mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
sys/select.h is not present on HPUX, avoid including it
This commit is contained in:
parent
06bf988dc1
commit
18234cbdac
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user