Module: ngircd.git Branch: master Commit: 67256f9da1cd43a31e3e703d15fbd4cf75c23923 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=67256...
Author: Alexander Barton alex@barton.de Date: Mon Mar 17 00:47:45 2014 +0100
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.
---
configure.ng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ng b/configure.ng index 5f85a4d..bd40694 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