* configure.in: Check the existence of sys/poll.h.
authorueno <ueno>
Wed, 17 Oct 2001 04:26:12 +0000 (04:26 +0000)
committerueno <ueno>
Wed, 17 Oct 2001 04:26:12 +0000 (04:26 +0000)
configure.in

index 83c9ed4..19fc59e 100644 (file)
@@ -9,12 +9,13 @@ AC_PROG_INSTALL
 AC_PROG_MAKE_SET
 AC_PROG_RANLIB
 
-AC_CHECK_HEADERS(libgen.h sys/select.h socks.h)
+AC_CHECK_HEADERS(libgen.h sys/select.h socks.h sys/poll.h)
 
 AC_CHECK_LIB(nsl, gethostbyname)
 AC_CHECK_LIB(socket, socket)
 AC_CHECK_TYPE(fd_set, int)
 AC_REPLACE_FUNCS(basename getaddrinfo)
+AC_CHECK_FUNC(poll)
 
 AC_CACHE_CHECK([for struct addrinfo], ac_cv_struct_addrinfo,
 [AC_TRY_COMPILE([#include <netdb.h>