Am Dienstag, den 21.02.2006, 00:25 +0100 schrieb Stefan Leichter: > current cvs does not build for me on SuSE 9.0
> gcc -c -I../../../wine/dlls/ntdll -I. -I../../../wine/include -I../../include > > -D__WINESRC__ -D_NTSYSTEM_ -D_REENTRANT -fPIC -Wall -pipe > -fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o > signal_i386.o ../../../wine/dlls/ntdll/signal_i386.c > ../../../wine/dlls/ntdll/signal_i386.c:108:83: missing terminating ' character > make[2]: *** [signal_i386.o] Fehler 1 Hi. I have the same Problem here, caused by this patch: http://www.winehq.org/pipermail/wine-cvs/2006-February/021180.html And the fix: Changelog: - Avoid commpile - Error, caused by a single Quote -- By By ... ... Detlef
diff --git a/dlls/ntdll/signal_i386.c b/dlls/ntdll/signal_i386.c index bfc9c45..727223d 100644 --- a/dlls/ntdll/signal_i386.c +++ b/dlls/ntdll/signal_i386.c @@ -105,7 +105,7 @@ struct kernel_sigaction #ifndef SYS_sigaction # ifndef __NR_sigaction -# error The sigaction syscall is part of the Linux i386 ABI, but your headers don't define it. Please raise a bug with your distribution. +# error The sigaction syscall is part of the Linux i386 ABI, but your headers does not define it. Please raise a bug with your distribution. # endif # define SYS_sigaction __NR_sigaction #endif
