about summary refs log tree commit diff
path: root/configure.ng
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-01-24 22:45:00 +0100
committerAlexander Barton <alex@barton.de>2013-01-24 22:45:00 +0100
commitfd260404caa7ce174ada663024d19cd789c152b5 (patch)
tree9e7c18b5790aa1454939d9909453c9b727553d27 /configure.ng
parenta551942635bf2569851013e5a92d8ae918af7ca0 (diff)
downloadngircd-fd260404caa7ce174ada663024d19cd789c152b5.tar.gz
ngircd-fd260404caa7ce174ada663024d19cd789c152b5.zip
configure: "netinet/in_systm.h" is optional
The header file "netinet/in_systm.h" already is optional in ngIRCd, so
don't require it in the configure script. Now ngIRCd can be built on
Minix 3 again :-)
Diffstat (limited to 'configure.ng')
-rw-r--r--configure.ng6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ng b/configure.ng
index c89096fd..034b5653 100644
--- a/configure.ng
+++ b/configure.ng
@@ -120,14 +120,14 @@ AC_HEADER_TIME
 
 # Required header files
 AC_CHECK_HEADERS([ \
-	fcntl.h netdb.h netinet/in.h netinet/in_systm.h stdlib.h string.h \
+	fcntl.h netdb.h netinet/in.h stdlib.h string.h \
 	strings.h sys/socket.h sys/time.h unistd.h \
 	],,AC_MSG_ERROR([required C header missing!]))
 
 # Optional header files
 AC_CHECK_HEADERS_ONCE([ \
-	arpa/inet.h inttypes.h malloc.h netinet/ip.h stdbool.h stddef.h \
-	stdint.h varargs.h \
+	arpa/inet.h inttypes.h malloc.h netinet/in_systm.h netinet/ip.h \
+	stdbool.h stddef.h stdint.h varargs.h \
 	])
 
 # -- Datatypes --