http://bugs.winehq.com/show_bug.cgi?id=1581
Summary: kernel32.dll Product: Wine Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-binary AssignedTo: wine-bugs@winehq.com ReportedBy: beer.info@videotron.ca
The latest release of Wine (20030709) creates the library kernel32 with the wrong filename. Fix:
cd dlls mv kernel32.dll.so libkernel32.dll.so
Also, under the 'miscemu' sub-direcory, the 'wine' executable would not link because '-lkernel32.dll' was missing from link. Fix:
gcc -o wine -Wl,--section-start,.interp=0x3c000100 main.o -L../dlls -lntdll.dll -lkernel32.dll -L../libs/wine -lwine -L../libs/unicode -lwine_unicode -L../libs/port -lwine_port