PATCH - wineserver serial.c porting fix

Steven Edwards steven_ed4153 at yahoo.com
Fri Jan 31 15:16:46 CST 2003


Working on building wineserver on mingw

Changelog: 
check for
utime.h
termios.h
sys/ioctl.h

Index: serial.c
===================================================================
RCS file: /home/wine/wine/server/serial.c,v
retrieving revision 1.25
diff -u -r1.25 serial.c
--- serial.c	30 Jan 2003 00:26:44 -0000	1.25
+++ serial.c	31 Jan 2003 21:14:56 -0000
@@ -32,9 +32,15 @@
 #include <sys/types.h>
 #include <time.h>
 #include <unistd.h>
+#ifdef HAVE_UTIME_H
 #include <utime.h>
+#endif
+#ifdef HAVE_TERMIOS_H
 #include <termios.h>
+#endif
+#ifdef HAVE_SYS_IOCTL_H
 #include <sys/ioctl.h>
+#endif
 
 #include "winerror.h"
 #include "winbase.h"


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com



More information about the wine-patches mailing list