Commit 18a9d741 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Cosmetics.

parent 46fb7e00
......@@ -15,7 +15,7 @@ ac_default_prefix=/usr/local
ac_help="$ac_help
--disable-debug compile out all debugging messages"
ac_help="$ac_help
--enable-opengl force usage of OpenGL even if the latter is thread-safe"
--enable-opengl force usage of OpenGL even if the latter is thread-safe via pthread"
ac_help="$ac_help
--disable-trace compile out TRACE messages"
ac_help="$ac_help
......@@ -7394,7 +7394,7 @@ then
echo
echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
echo "*** A fix for glibc 2.1.3 that seem to work is included in this version of Wine,"
echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine,"
echo "*** start configure with '--enable-opengl' to force OpenGL support."
fi
......
......@@ -20,7 +20,7 @@ AC_ARG_ENABLE(debug,
[if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
AC_ARG_ENABLE(opengl,
[ --enable-opengl force usage of OpenGL even if the latter is thread-safe],
[ --enable-opengl force usage of OpenGL even if the latter is thread-safe via pthread],
[if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
AC_ARG_ENABLE(trace,
......@@ -1267,7 +1267,7 @@ then
echo
echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
echo "*** A fix for glibc 2.1.3 that seem to work is included in this version of Wine,"
echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine,"
echo "*** start configure with '--enable-opengl' to force OpenGL support."
fi
......
......@@ -613,6 +613,7 @@ StartServiceW( SC_HANDLE hService, DWORD dwNumServiceArgs,
if( r == WAIT_FAILED)
return FALSE;
FIXME("problematic because of address space separation.\n");
start_dwNumServiceArgs = dwNumServiceArgs;
start_lpServiceArgVectors = (LPWSTR *)lpServiceArgVectors;
......
......@@ -419,7 +419,7 @@ HDRVR WINAPI OpenDriverA(LPCSTR lpDriverName, LPCSTR lpSectionName, LPARAM lPara
goto the_end;
if (!(lpDrv = DRIVER_TryOpenDriver16(lpDriverName, lpSectionName, lParam2)))
TRACE("Failed to open driver %s from section %s\n", lpDriverName, lpSectionName);
TRACE("Failed to open driver %s from system.ini file, section %s\n", lpDriverName, lpSectionName);
the_end:
if (lpDrv) TRACE("=> %08lx\n", (DWORD)lpDrv);
return (DWORD)lpDrv;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment