Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/ntserv



Date:	Sunday March 14, 1999 @ 1:39
Author:	tanner

Update of /home/netrek/cvsroot/Vanilla/ntserv
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv310/ntserv

Modified Files:
	socket.c 
Log Message:
Changed the Solaris specific stuff so that the includes are in the .c files 
instead of config.h



****************************************

Index: Vanilla/ntserv/socket.c
diff -u Vanilla/ntserv/socket.c:1.4 Vanilla/ntserv/socket.c:1.5
--- Vanilla/ntserv/socket.c:1.4	Thu Mar  4 23:27:07 1999
+++ Vanilla/ntserv/socket.c	Sun Mar 14 01:39:19 1999
@@ -1,4 +1,8 @@
 /* $Log: socket.c,v $
+/* Revision 1.5  1999/03/14 07:39:19  tanner
+/* Changed the Solaris specific stuff so that the includes are in the .c files
+/* instead of config.h
+/*
 /* Revision 1.4  1999/03/05 05:27:07  cameron
 /* ghostbust fixes continued; reduce POUTFIT delay for KGHOST
 /*
@@ -65,6 +69,13 @@
 #include <signal.h>
 
 #include "defs.h"
+
+	/* Needed by Solaris 2.5.1 */
+
+#if defined(HAVE_SYS_FILIO_H)
+#include <sys/filio.h>
+#endif
+
 #include INC_UNISTD
 #include INC_STRINGS
 #include INC_SYS_SELECT