diff options
| author | Alexander Barton <alex@barton.de> | 2014-03-17 00:47:45 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2014-03-17 00:52:11 +0100 |
| commit | 67256f9da1cd43a31e3e703d15fbd4cf75c23923 (patch) | |
| tree | 265435285c67e734fbaaeca4d576a7ea57d44c49 /configure.ng | |
| parent | 7b10a0e4ee64657e138dc9ef3a0d8a68c0e275f0 (diff) | |
| download | ngircd-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.ng | 2 |
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 |