select comes from <sys/select.h> according to POSIX.1-2001, or from a

variety of other standard headers on older systems, but not <select.h>.
AIX build fix.
This commit is contained in:
Kevin Bowling 2010-11-22 20:44:10 -07:00 committed by Nick Mathewson
parent 652024b6b1
commit a3a9f6b2d9

View File

@ -432,8 +432,8 @@ AC_CHECK_TYPES([fd_mask], , ,
[#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SELECT_H
#include <select.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif])
AC_CHECK_SIZEOF(long long)