http://bugs.winehq.org/show_bug.cgi?id=14381
--- Comment #14 from Roy Shea royshea@gmail.com 2008-08-08 17:33:53 --- Created an attachment (id=15354) --> (http://bugs.winehq.org/attachment.cgi?id=15354) Lively Install Recipe
I've attached a revised recipe for running the lively installer in Wine. One of the current problems is missing winhttp functionality, requiring the use of a native winhttp.dll. I took a look at the specific winhttp calls that the installer needs. Looks like the set is:
WinHttpAddRequestHeaders WinHttpCloseHandle WinHttpConnect WinHttpCrackUrl WinHttpGetDefaultProxyConfiguration WinHttpGetIEProxyConfigForCurrentUser WinHttpOpen WinHttpOpenRequest WinHttpQueryDataAvailable WinHttpQueryHeaders WinHttpReadData WinHttpReceiveResponse WinHttpSendRequest WinHttpSetStatusCallback
You can reproduce this list by running the lively installer with:
WINEDEBUG=+snoop ./wine ~/tmp/livelysetup.exe 2>snoop.txt grep WINHTTP dump.txt | tr -s ' ' | cut -f2 -d' ' | cut -f2 -d'.' | cut -f1 -d( | sort | uniq
If any winhttp hackers are looking for something to do... :-)