From: hno <> Date: Mon, 7 Oct 2002 19:44:51 +0000 (+0000) Subject: If FD_SETSIZE has been defined it is not safe to redefine it. X-Git-Tag: SQUID_3_0_PRE1~697 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=136dccaceb84d3f3d6e7bc51703ed7d841c23a17;p=thirdparty%2Fsquid.git If FD_SETSIZE has been defined it is not safe to redefine it. (crept in with the autoconf-2.5 update) Problem is that squid_types.h includes several header files. Needs to be solved somehow. --- diff --git a/src/squid.h b/src/squid.h index 3411808855..3e9fff6890 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.224 2002/10/06 02:21:26 robertc Exp $ + * $Id: squid.h,v 1.225 2002/10/07 13:44:51 hno Exp $ * * AUTHOR: Duane Wessels * @@ -90,9 +90,6 @@ /* Increase FD_SETSIZE if SQUID_MAXFD is bigger */ #if CHANGE_FD_SETSIZE && SQUID_MAXFD > DEFAULT_FD_SETSIZE -#ifdef FD_SETSIZE -#undef FD_SETSIZE -#endif #define FD_SETSIZE SQUID_MAXFD #endif