Hello,
trying to install ie6 on current wine gives me an endless loop with function calls to CommonUnimpStub().
I started with .wine and dirve_c created by wine and installed dcom98, vc c++ runtime, vb 5 + 6 Runtime
What i found so far is that it happens when the iebatch.exe gets started. The call the DllMain of the gdi32.dll never returns.
In the traces i can see:
0016:Call PE DLL (proc=0x4080e5a4,module=0x40800000 L"gdi32.dll",reason=PROCESS_ATTACH,res=0x1)
but a line like
0016:Ret PE DLL (proc=0x409b15a4,module=0x409a0000 L"gdi32.dll",reason=PROCESS_ATTACH,res=0x1) retval=1
is not inside the log file.
Any tips to get around this problem ?
Bye Stefan
On Sun, 29 Aug 2004 13:55:49 +0200, Stefan Leichter wrote:
trying to install ie6 on current wine gives me an endless loop with function calls to CommonUnimpStub().
Try export WINEDLLOVERRIDES="advapi32=builtin"
You may need others. You can refer to the source of my IE6 installer script to see how to solve some similar problems.
Unfortunately the only way to fix this one so it works out of the box is to force advapi32 to always load builtin, and never native. I'm not sure what Alexandres policy on modifying the default DLL overrides in the source is. Last time I submitted a patch to change the internal table it was rejected.
Hi,
--- Mike Hearn mike@navi.cx wrote:
Unfortunately the only way to fix this one so it works out of the box is to force advapi32 to always load builtin, and never native. I'm not sure what Alexandres policy on modifying the default DLL overrides in the source is. Last time I submitted a patch to change the internal table it was rejected.
I dont see how native loading of Advapi32 ever worked anyway. Its a case like ntdll, kernel32, user32 or gdi. Maybe the Win9x advapi32 can.....
Thanks Steven
_______________________________ Do you Yahoo!? Win 1 of 4,000 free domain names from Yahoo! Enter now. http://promotions.yahoo.com/goldrush
On Sun, 29 Aug 2004 09:23:31 -0700, Steven Edwards wrote:
I dont see how native loading of Advapi32 ever worked anyway. Its a case like ntdll, kernel32, user32 or gdi. Maybe the Win9x advapi32 can.....
I thought native NT advapi just forwarded to ntdll?