From 58f4af7973e3d2ec0510050ea207e6b16c6c9a64 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 22 Dec 2004 22:28:10 +0000 Subject: Marcin Konicki provided two configure fixes and a source fix to make curl build out-of-the-box on BeOS. --- lib/select.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib') 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 +#endif + #ifdef WIN32 #define VALID_SOCK(s) (1) /* Win-sockets are not in range [0..FD_SETSIZE> */ #else -- cgit v1.2.3