http://bugs.winehq.org/show_bug.cgi?id=4975
------- Additional Comments From saulius.krasuckas@elst.vtu.lt 2006-23-04 11:42 ------- Well, I did some testing using "git bisect" and found the offending patch, I hope: http://source.winehq.org/git/?p=wine.git;a=commit;h=d404fb5bf84206b5990516e8...
Then I did some commenting out on the lines of [FakeDllsSection]. Looks like only 3 fake binaries make installation noisy:
--- a/tools/wine.inf +++ b/tools/wine.inf @@ -2109,12 +2109,12 @@ 10,,rundll32.exe 10,,winebrowser.exe 10,,winhelp.exe -10,,winhlp32.exe,winhelp.exe +;10,,winhlp32.exe,winhelp.exe 10,command,start.exe 11,,advapi32.dll 11,,comdlg32.dll 11,,control.exe -11,,crypt32.dll +;11,,crypt32.dll 11,,dbghelp.dll 11,,ddraw.dll 11,,gdi32.dll @@ -2133,7 +2133,7 @@ 11,,shdocvw.dll 11,,shell32.dll 11,,shfolder.dll -11,,shlwapi.dll +;11,,shlwapi.dll 11,,user32.dll 11,,version.dll 11,,wcmd.exe
Fake shlwapi.dll makes 2 msgboxes to popup (telling about SHDOCVW.DLL errors).
Fake crypt32.dll brings up 3 additional msgboxes (describing INITPKI.DLL, CRYPTDLG.DLL errors).
Fake winhlp32.exe/winhelp.exe gives us ~17 more msgboxes (mentioning BROWSEUI.DLL, MSRATING.DLL, HLINK.DLL, PLUGIN.OCX, SENDMAIL.DLL, MSHTMLED.DLL, SHDOC401.DLL, PROCTEXE.OCX, MSTIME.DLL, DXTRANS.DLL, DXTMSFT.DLL, JSCRIPT.DLL, INITPKI.DLL, DIGEST.DLL) and only it seems to be fatal to the installation process.
Applying my micro-patch and reinstalling Wine leaves us with the only msgbox about IE5INFO.OCX which comes from very distant past, I believe. It requires MFC40.DLL which Wine doesn't provide.
HTH some guys...