]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1288. [port] Openserver: the value FD_SETSIZE depends on whether
authorMark Andrews <marka@isc.org>
Fri, 10 May 2002 06:41:55 +0000 (06:41 +0000)
committerMark Andrews <marka@isc.org>
Fri, 10 May 2002 06:41:55 +0000 (06:41 +0000)
                        <sys/param.h> is included or not.  Be consistant.

CHANGES
bin/tests/zone_test.c
lib/isc/unix/app.c
lib/isc/unix/entropy.c

diff --git a/CHANGES b/CHANGES
index 7923d11b3106649d37ded25e858d9cafd5c03f16..cea286b590c837f2fa8abd1dfbd18fc90108ab73 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1288.  [port]          Openserver: the value FD_SETSIZE depends on whether
+                       <sys/param.h> is included or not.  Be consistant.
+
 1287.  [func]          isc_file_openunique() now creates file using mode
                        0666 rather than 0600.
 
index 766479b3878886ecce665bcda607e57c6af37377..cdc463ecb6e82b4d3395cc16169c01504a2ed3e5 100644 (file)
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone_test.c,v 1.27 2001/11/27 01:55:30 gson Exp $ */
+/* $Id: zone_test.c,v 1.28 2002/05/10 06:41:53 marka Exp $ */
 
 #include <config.h>
 
+#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/time.h>
 
 #include <dns/result.h>
 #include <dns/zone.h>
 
+#ifdef ISC_PLATFORM_NEEDSYSSELECTH
+#include <sys/select.h>
+#endif
+
 static int debug = 0;
 static int quiet = 0;
 static int stats = 0;
index a6ca208113e4d1b9914e1c2bca548f96e6d03f00..9a4dd0a90224c0b88f509ea4a0230805b548b01d 100644 (file)
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: app.c,v 1.47 2001/11/30 01:59:40 gson Exp $ */
+/* $Id: app.c,v 1.48 2002/05/10 06:41:54 marka Exp $ */
 
 #include <config.h>
 
+#include <sys/param.h> /* Openserver 5.0.6A and FD_SETSIZE */
 #include <sys/types.h>
 
 #include <stddef.h>
index 2a21bfd69ebdca9d5709076d614175315db5332b..3129ce6af84798bf482f1d19c5b2c5f6ca62b439 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: entropy.c,v 1.64 2002/03/05 06:41:08 marka Exp $ */
+/* $Id: entropy.c,v 1.65 2002/05/10 06:41:55 marka Exp $ */
 
 /*
  * This is the system depenedent part of the ISC entropy API.
@@ -23,6 +23,7 @@
 
 #include <config.h>
 
+#include <sys/param.h> /* Openserver 5.0.6A and FD_SETSIZE */
 #include <sys/types.h>
 #include <sys/time.h>