mirror of https://github.com/python/cpython
AIX fix.
This commit is contained in:
parent
3c28474ea2
commit
0bb1a51925
|
@ -78,7 +78,8 @@ Socket methods:
|
|||
#include <sys/un.h>
|
||||
#include <netdb.h>
|
||||
#ifdef _AIX /* I *think* this works */
|
||||
#include <select.h> /* Needed for fd_set */
|
||||
/* AIX defines fd_set in a separate file. Sigh... */
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -229,7 +229,7 @@ millitimer()
|
|||
|
||||
#ifdef BSD_TIME
|
||||
|
||||
#ifdef _IBMR2
|
||||
#ifdef _AIX /* I *think* this works */
|
||||
/* AIX defines fd_set in a separate file. Sigh... */
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue