summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-08-02 18:36:30 +0000
committerAdam Jackson <ajax@nwnk.net>2005-08-02 18:36:30 +0000
commitcd0400eeda5d7818232844d93343877ef0ff8168 (patch)
tree2e74151dfe2e3e4c774428ed797e801a4d977519 /configure.ac
parenta475adb523a4d24cd53d436ba8c98ac7c8d37934 (diff)
Fix the fds_bits test on OSX and maybe others. OSX defines fd_set in
<sys/types.h> just to be perverse.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 96e7cf3..dd947c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,6 +11,7 @@ if test "x$fds_bits_found" = xfalse ; then
USE_FDS_BITS="fds_bits"
],,
[
+ #include <sys/types.h>
#include <sys/select.h>
])
fi
@@ -22,6 +23,7 @@ if test "x$fds_bits_found" = xfalse ; then
USE_FDS_BITS="__fds_bits"
],,
[
+ #include <sys/types.h>
#include <sys/select.h>
])
fi