From a3a9f6b2d9fbc853e9f54f1af3132adce760e9bb Mon Sep 17 00:00:00 2001 From: Kevin Bowling Date: Mon, 22 Nov 2010 20:44:10 -0700 Subject: [PATCH] select comes from according to POSIX.1-2001, or from a variety of other standard headers on older systems, but not . AIX build fix. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index c7936e5b..35577976 100644 --- a/configure.in +++ b/configure.in @@ -432,8 +432,8 @@ AC_CHECK_TYPES([fd_mask], , , [#ifdef HAVE_SYS_TYPES_H #include #endif -#ifdef HAVE_SELECT_H -#include +#ifdef HAVE_SYS_SELECT_H +#include #endif]) AC_CHECK_SIZEOF(long long)