about summary refs log tree commit diff
path: root/configure.ng
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-03-17 00:47:45 +0100
committerAlexander Barton <alex@barton.de>2014-03-17 00:52:11 +0100
commit67256f9da1cd43a31e3e703d15fbd4cf75c23923 (patch)
tree265435285c67e734fbaaeca4d576a7ea57d44c49 /configure.ng
parent7b10a0e4ee64657e138dc9ef3a0d8a68c0e275f0 (diff)
downloadngircd-67256f9da1cd43a31e3e703d15fbd4cf75c23923.tar.gz
ngircd-67256f9da1cd43a31e3e703d15fbd4cf75c23923.zip
configure[.ng]: <sys/types.h> is a required header file
ngIRCd already includes <sys/types.h> in a lot of places without
checking for its existence (for example in "ngircd.c", "io.c", ...),
therefore make it a required header file.
Diffstat (limited to 'configure.ng')
-rw-r--r--configure.ng2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ng b/configure.ng
index 5f85a4dd..bd40694f 100644
--- a/configure.ng
+++ b/configure.ng
@@ -155,7 +155,7 @@ AC_HEADER_TIME
 # Required header files
 AC_CHECK_HEADERS([ \
 	fcntl.h netdb.h netinet/in.h stdlib.h string.h \
-	strings.h sys/socket.h sys/time.h unistd.h \
+	strings.h sys/socket.h sys/time.h sys/types.h unistd.h \
 	],,AC_MSG_ERROR([required C header missing!]))
 
 # Optional header files