aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-01-28 13:13:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-01-28 13:13:58 +0000
commitc44d2498e3aa97740e53920d429e6413b13772d0 (patch)
tree1aa8f7c72deec9bf99b5e2ce1b37926093cdd0d2
parent2aed209efa6f9fe5b43a529c80273f2a3c247e12 (diff)
include sys/select.h on NetBSD as well
-rw-r--r--include/curl/multi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h
index 27d44dca9..f79dbabb9 100644
--- a/include/curl/multi.h
+++ b/include/curl/multi.h
@@ -55,7 +55,7 @@
/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish
libc5-based Linux systems. Only include it on system that are known to
require it! */
-#if defined(_AIX) || defined(NETWARE)
+#if defined(_AIX) || defined(NETWARE) || defined(__NetBSD__)
#include <sys/select.h>
#endif