Marcin Konicki provided two configure fixes and a source fix to make curl

build out-of-the-box on BeOS.
This commit is contained in:
Daniel Stenberg
2004-12-22 22:28:10 +00:00
parent 99befd3a15
commit 58f4af7973
4 changed files with 20 additions and 3 deletions

View File

@@ -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