From: Nathan Bryant Date: Thu, 8 Oct 1998 03:22:30 +0000 (+0000) Subject: * client_chat.c, commands.c, serv_chat.c, sysdep.c: X-Git-Tag: v7.86~8296 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=337832ad60b1e141e1332b789a2672d8204fca42;p=citadel.git * client_chat.c, commands.c, serv_chat.c, sysdep.c: use HAVE_SYS_SELECT_H macro --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index 36cde8e48..6bfb9f114 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -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 * Began fixing the stuff I broke diff --git a/citadel/client_chat.c b/citadel/client_chat.c index a57d09f82..36b20ed11 100644 --- a/citadel/client_chat.c +++ b/citadel/client_chat.c @@ -17,7 +17,7 @@ #include #include #include -#ifdef NEED_SELECT_H +#ifdef HAVE_SYS_SELECT_H #include #endif #include "citadel.h" diff --git a/citadel/commands.c b/citadel/commands.c index 59c623282..2cacea76a 100644 --- a/citadel/commands.c +++ b/citadel/commands.c @@ -23,7 +23,7 @@ #include #endif -#ifdef NEED_SELECT_H +#ifdef HAVE_SYS_SELECT_H #include #endif diff --git a/citadel/serv_chat.c b/citadel/serv_chat.c index f11aec85b..72d368f07 100644 --- a/citadel/serv_chat.c +++ b/citadel/serv_chat.c @@ -14,7 +14,7 @@ #include "citadel.h" #include "server.h" #include -#ifdef NEED_SELECT_H +#ifdef HAVE_SYS_SELECT_H #include #endif #include "serv_chat.h" diff --git a/citadel/sysdep.c b/citadel/sysdep.c index 8b8ad314b..b40cbcbd9 100644 --- a/citadel/sysdep.c +++ b/citadel/sysdep.c @@ -40,7 +40,7 @@ #include "housekeeping.h" #include "dynloader.h" -#ifdef NEED_SELECT_H +#ifdef HAVE_SYS_SELECT_H #include #endif