aboutsummaryrefslogtreecommitdiff
path: root/include/curl
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2006-08-11 18:11:42 +0000
committerDan Fandrich <dan@coneharvesters.com>2006-08-11 18:11:42 +0000
commiteb26a581f95d208d3abcb1413bcd856a6e85a0e9 (patch)
tree894b30ccea6a21fc290d0d4dbd4e123b0de292c7 /include/curl
parentb04cbebf868f3e651e2f9fd85ff3a56b01004ac5 (diff)
Use __minix to detect Minix, which works on both ACK and GCC.
Diffstat (limited to 'include/curl')
-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 925d5c007..6811ce798 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) || defined(__NetBSD__) || defined(_MINIX)
+#if defined(_AIX) || defined(NETWARE) || defined(__NetBSD__) || defined(__minix)
#include <sys/select.h>
#endif