* client_chat.c, commands.c, serv_chat.c, sysdep.c:
authorNathan Bryant <loanshark@uncensored.citadel.org>
Thu, 8 Oct 1998 03:22:30 +0000 (03:22 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Thu, 8 Oct 1998 03:22:30 +0000 (03:22 +0000)
          use HAVE_SYS_SELECT_H macro

citadel/ChangeLog
citadel/client_chat.c
citadel/commands.c
citadel/serv_chat.c
citadel/sysdep.c

index 36cde8e485603477ea9f7847b0b93cf46484f584..6bfb9f114334d183a587fb8508f20259bddf08cf 100644 (file)
@@ -6,6 +6,8 @@
          in the wholist.
        * netproc.c: sillyness fix
        * room_ops.h: prototype delete_room()
+       * client_chat.c, commands.c, serv_chat.c, sysdep.c:
+         use HAVE_SYS_SELECT_H macro
 
 Mon Oct  5 17:01:32 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Began fixing the stuff I broke
index a57d09f82f1d31d7aafef2d86b18cc9653275108..36b20ed11590a3671526e9bfea2e4f3b22d33526 100644 (file)
@@ -17,7 +17,7 @@
 #include <errno.h>
 #include <sys/time.h>
 #include <sys/types.h>
-#ifdef NEED_SELECT_H
+#ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif
 #include "citadel.h"
index 59c6232829ed46b1f8896e89fb1decb9ff9e47f7..2cacea76ab1cc5b242cec053e701cfaba1a5794a 100644 (file)
@@ -23,7 +23,7 @@
 #include <sgtty.h>
 #endif
 
-#ifdef NEED_SELECT_H
+#ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif
 
index f11aec85bbb83ffa5b303e58b9f848d3cd7290de..72d368f07f25c235fad7f7707e2eba0cbf3bd6ae 100644 (file)
@@ -14,7 +14,7 @@
 #include "citadel.h"
 #include "server.h"
 #include <syslog.h>
-#ifdef NEED_SELECT_H
+#ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif
 #include "serv_chat.h"
index 8b8ad314bb09a8fdd7dcc36045663778c5c0ce21..b40cbcbd9c3e023a7590be15c68d643f3c3a3825 100644 (file)
@@ -40,7 +40,7 @@
 #include "housekeeping.h"
 #include "dynloader.h"
 
-#ifdef NEED_SELECT_H
+#ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif