On Mon, 2003-10-27 at 13:09, Alexandre Julliard wrote: > Ralf Juengling <[EMAIL PROTECTED]> writes: > > > So there is nothing I can do about it at the moment? > > What is the most recent Wine version in which winemaker used to work? > > The previous release should work. Or try this patch: > > Index: tools/winemaker > =================================================================== > RCS file: /opt/cvs-commit/wine/tools/winemaker,v > retrieving revision 1.65 > diff -u -p -r1.65 winemaker > --- tools/winemaker 5 Aug 2003 18:31:32 -0000 1.65 > +++ tools/winemaker 27 Oct 2003 21:07:38 -0000 > @@ -2769,14 +2769,10 @@ then > > WINE_DLL_ROOT="/lib:/lib/wine:/usr/lib:/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine" > fi > fi > -AC_PATH_FILE(WINE_DLL_ROOT,[libntdll.dll.so],[ > - AC_MSG_ERROR([Could not find the Wine dlls (libntdll.dll.so)]) > +AC_PATH_FILE(WINE_DLL_ROOT,[libntdll.def],[ > + AC_MSG_ERROR([Could not find the Wine dlls (libntdll.def)]) > ],[$WINE_DLL_ROOT]) > - > -AC_PATH_LIBRARY(WINE_DLL_ROOT,[-lntdll.dll],[$WINE_LIBRARY_PATH -lwine > -lwine_unicode],[ > - AC_MSG_ERROR([Could not link with the Wine dlls (libntdll.dll.so)]) > -],[$WINE_DLL_ROOT]) > -WINE_DLL_PATH="-L$WINE_DLL_ROOT/wine" > +WINE_DLL_PATH="-L$WINE_DLL_ROOT" > > if test -z "$WINE_TOOL_PATH" > then
Thanks, together with the patch --- /local/downloads/wine-20031016/tools/winemaker 2003-10-27 18:02:41.000000000 -0800 +++ /local/bin/winemaker 2003-10-27 18:14:22.000000000 -0800 @@ -2635,7 +2635,7 @@ WINE_UNICODE_ROOT="$WINE_ROOT:$WINE_ROOT/lib:$WINE_ROOT/unicode" WINE_UUID_ROOT="$WINE_ROOT:$WINE_ROOT/lib:$WINE_ROOT/ole" WINE_TOOL_PATH="$WINE_ROOT:$WINE_ROOT/bin:$WINE_ROOT/tools/wrc:$WINE_ROOT/tools/winebuild" - WINE_DLL_ROOT="$WINE_ROOT/dlls:$WINE_ROOT/lib" + WINE_DLL_ROOT="$WINE_ROOT/dlls:$WINE_ROOT/lib:$WINE_ROOT/lib/wine" fi AC_ARG_WITH(wine-includes, the generated configure script does its job without errors. Now I the following error from make: [EMAIL PROTECTED] winemine]$ make sed -e 's,@bindir\@,/usr/local/bin,g' -e 's,@winelibdir\@,.,g' ./wineapploader.in >wineapploader || rm -f wineapploader LD_LIBRARY_PATH="/local/lib:$LD_LIBRARY_PATH" /local/bin/wrc -I. -I/local/include/wine/windows -o En.res En.rc En.rc:23:22: Error: parse error make: *** [En.res] Error 1 -- Ralf Juengling <[EMAIL PROTECTED]>
