diff options
| author | Alexander Barton <alex@barton.de> | 2002-05-24 23:42:37 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-05-24 23:42:37 +0000 |
| commit | 9212f8a7091fbcb311fa7bd20975ef939c5a46db (patch) | |
| tree | 715c5377c0073d3b6737ece6a1fd295b4ffb3283 | |
| parent | 3862949a4617bfb81c00b56e070efdb2ae71088d (diff) | |
| download | ngircd-9212f8a7091fbcb311fa7bd20975ef939c5a46db.tar.gz ngircd-9212f8a7091fbcb311fa7bd20975ef939c5a46db.zip | |
- Test auf malloc.h geaendert: der Header ist nun optional.
| -rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index b073607b..804c1581 100644 --- a/configure.in +++ b/configure.in @@ -9,7 +9,7 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: configure.in,v 1.50 2002/05/22 09:50:58 alex Exp $ +# $Id: configure.in,v 1.51 2002/05/24 23:42:37 alex Exp $ # # -- Initialisierung -- @@ -60,11 +60,11 @@ AC_HEADER_TIME AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([ \ - ctype.h errno.h fcntl.h malloc.h netdb.h netinet/in.h regex.h \ - stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.h \ + ctype.h errno.h fcntl.h netdb.h netinet/in.h regex.h stdlib.h \ + string.h strings.h sys/socket.h sys/time.h unistd.h \ ],,AC_MSG_ERROR([required C header missing!])) -AC_CHECK_HEADERS(arpa/inet.h stdint.h) +AC_CHECK_HEADERS(arpa/inet.h malloc.h stdint.h) # -- Datentypen -- |