summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2009-12-31 00:38:47 +0100
committerAlexander Barton <alex@barton.de>2009-12-31 00:38:47 +0100
commit1ddc74f13e3feb5be6af4294e1f6a8162edca8a7 (patch)
treeefd7e5070a6b00ad44d12472449231506b730ed6 /configure.in
parent75dabcaae52eb9f2dcfbccc19743670962dbafb3 (diff)
downloadngircd-1ddc74f13e3feb5be6af4294e1f6a8162edca8a7.tar.gz
ngircd-1ddc74f13e3feb5be6af4294e1f6a8162edca8a7.zip
Really test for netinet/ip.h and set HAVE_NETINET_IP_H
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 3d4c6404..10a72d35 100644
--- a/configure.in
+++ b/configure.in
@@ -105,7 +105,8 @@ 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 stdbool.h stddef.h varargs.h])
+AC_CHECK_HEADERS([ \
+	arpa/inet.h ctype.h malloc.h netinet/ip.h stdbool.h stddef.h varargs.h])
 
 # -- Datatypes --