diff options
| author | Alexander Barton <alex@barton.de> | 2002-05-22 09:50:58 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-05-22 09:50:58 +0000 |
| commit | e7c1b19161ab7a3f4dabb11ef17c33746721444c (patch) | |
| tree | 479e61b7c0db68ef3b6abce121b8a356f9cd300c | |
| parent | cc0a694c36bcc029994b164b2aa93ee4e9e222f9 (diff) | |
| download | ngircd-e7c1b19161ab7a3f4dabb11ef17c33746721444c.tar.gz ngircd-e7c1b19161ab7a3f4dabb11ef17c33746721444c.zip | |
- Test auf stdint.h korrigiert: der Header ist optional.
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 2724f741..b073607b 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.49 2002/05/22 09:34:17 alex Exp $ +# $Id: configure.in,v 1.50 2002/05/22 09:50:58 alex Exp $ # # -- Initialisierung -- @@ -61,10 +61,10 @@ AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([ \ ctype.h errno.h fcntl.h malloc.h netdb.h netinet/in.h regex.h \ - stdint.h stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.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) +AC_CHECK_HEADERS(arpa/inet.h stdint.h) # -- Datentypen -- |