]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
If FD_SETSIZE has been defined it is not safe to redefine it.
authorhno <>
Mon, 7 Oct 2002 19:44:51 +0000 (19:44 +0000)
committerhno <>
Mon, 7 Oct 2002 19:44:51 +0000 (19:44 +0000)
(crept in with the autoconf-2.5 update)

Problem is that squid_types.h includes several header files. Needs to
be solved somehow.

src/squid.h

index 3411808855e6168a6f63ce3d3d3904ff094d5dcf..3e9fff689046a3be4c469a8fb4d1d63b2ad1a710 100644 (file)
@@ -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