Had to apply the following patch to be able to run the 20031016 cvs. Without this patch I always got the following error:
wine: failed to initialize: wine/wine/dlls/ntdll.dll.so: undefined symbol: GetCurrentProcessId
Am running on an NPTL platform (Fedora Core Beta3 v0.95)
Index: dlls/ntdll/thread.c =================================================================== RCS file: /home/wine/wine/dlls/ntdll/thread.c,v retrieving revision 1.8 diff -u -r1.8 thread.c --- dlls/ntdll/thread.c 31 Oct 2003 00:16:20 -0000 1.8 +++ dlls/ntdll/thread.c 3 Nov 2003 20:08:09 -0000 @@ -27,6 +27,7 @@ #include "wine/library.h" #include "wine/server.h" #include "wine/debug.h" +#include "ntdll_misc.h"
WINE_DEFAULT_DEBUG_CHANNEL(thread);