sys/select.h is not present on HPUX, avoid including it

This commit is contained in:
Daniel Stenberg 2003-05-27 12:34:48 +00:00
parent 06bf988dc1
commit 18234cbdac
1 changed files with 3 additions and 0 deletions

View File

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