diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-05-27 12:34:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-05-27 12:34:48 +0000 |
commit | 18234cbdaced6adb7c4dadd9afbed7476f0f50b1 (patch) | |
tree | 7590014a64cdb9a722341e1aeda2ef3aa45cc5e8 /include | |
parent | 06bf988dc133faf127d8db778c1dbf5aabc33b9a (diff) |
sys/select.h is not present on HPUX, avoid including it
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/multi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index 9209912f2..4d7e0d900 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -54,7 +54,10 @@ #if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) #include <winsock.h> #else +#ifndef __hpux +/* HP-UX systems version 9, 10 and 11 lack this header */ #include <sys/select.h> +#endif #include <sys/socket.h> #include <sys/time.h> #include <sys/types.h> |