aboutsummaryrefslogtreecommitdiff
path: root/lib/select.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-22 22:28:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-22 22:28:10 +0000
commit58f4af7973e3d2ec0510050ea207e6b16c6c9a64 (patch)
tree27d8e79d5bbdb5ef03cb3c546301f5feb449399f /lib/select.c
parent99befd3a155369280236b918dcf2739e599b5eaa (diff)
Marcin Konicki provided two configure fixes and a source fix to make curl
build out-of-the-box on BeOS.
Diffstat (limited to 'lib/select.c')
-rw-r--r--lib/select.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/select.c b/lib/select.c
index c66095dde..8b6a8ce5c 100644
--- a/lib/select.c
+++ b/lib/select.c
@@ -39,6 +39,11 @@
#include "select.h"
+#ifdef __BEOS__
+/* BeOS has FD_SET defined in socket.h */
+#include <socket.h>
+#endif
+
#ifdef WIN32
#define VALID_SOCK(s) (1) /* Win-sockets are not in range [0..FD_SETSIZE> */
#else