From: Daniel Stenberg Date: Sat, 28 Jan 2006 13:13:58 +0000 (+0000) Subject: include sys/select.h on NetBSD as well X-Git-Tag: upstream/7.37.1~10539 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c44d2498e3aa97740e53920d429e6413b13772d0;p=platform%2Fupstream%2Fcurl.git include sys/select.h on NetBSD as well --- diff --git a/include/curl/multi.h b/include/curl/multi.h index 27d44dc..f79dbab 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 #endif