about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-12-28 14:56:21 +0000
committerAlexander Barton <alex@barton.de>2002-12-28 14:56:21 +0000
commit3c9da6565284fd06e6d34d6ad41d2d32a4ce11d6 (patch)
treef997bbefd35a3b209b3abe486e114394b07f1824
parent8340e4267ccd2e8d0014bab36d26a162ba2877ad (diff)
downloadngircd-3c9da6565284fd06e6d34d6ad41d2d32a4ce11d6.tar.gz
ngircd-3c9da6565284fd06e6d34d6ad41d2d32a4ce11d6.zip
- Added tests for <sys/poll.h> and poll().
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 30d6c06b..b2dd0953 100644
--- a/configure.in
+++ b/configure.in
@@ -9,7 +9,7 @@
 # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
 # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
 #
-# $Id: configure.in,v 1.71 2002/12/26 13:20:07 alex Exp $
+# $Id: configure.in,v 1.72 2002/12/28 14:56:21 alex Exp $
 #
 
 # -- Initialisierung --
@@ -81,7 +81,7 @@ AC_CHECK_HEADERS([ \
 	strings.h sys/socket.h sys/time.h unistd.h \
 	],,AC_MSG_ERROR([required C header missing!]))
 
-AC_CHECK_HEADERS(arpa/inet.h ctype.h malloc.h stdint.h sys/select.h varargs.h)
+AC_CHECK_HEADERS(arpa/inet.h ctype.h malloc.h stdint.h sys/select.h sys/poll.h varargs.h)
 
 # -- Datentypen --
 
@@ -122,7 +122,7 @@ AC_CHECK_FUNCS([ \
 	strstr waitpid \
 	],,AC_MSG_ERROR([required function missing!]))
 
-AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strlcpy strlcat)
+AC_CHECK_FUNCS(inet_aton isdigit poll sigaction snprintf vsnprintf strlcpy strlcat)
 
 # -- Konfigurationsoptionen --