diff options
| author | Alexander Barton <alex@barton.de> | 2002-11-30 22:14:47 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-11-30 22:14:47 +0000 |
| commit | a39f47916368a518f39cd50f6bb3e5bfea971f96 (patch) | |
| tree | a8da03d60694bf9769555e5d71cb85a86b3d069c /configure.in | |
| parent | e50d568f252f29c152a3644ed6efe24d943d5929 (diff) | |
| download | ngircd-a39f47916368a518f39cd50f6bb3e5bfea971f96.tar.gz ngircd-a39f47916368a518f39cd50f6bb3e5bfea971f96.zip | |
- Tests auf ctype.h und isdigit() hinzugefuegt.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 5ce47a20..28de5fce 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.68 2002/11/26 23:05:06 alex Exp $ +# $Id: configure.in,v 1.69 2002/11/30 22:14:47 alex Exp $ # # -- Initialisierung -- @@ -81,7 +81,7 @@ AC_CHECK_HEADERS([ \ strings.h sys/socket.h sys/time.h unistd.h \ ],,AC_MSG_ERROR([required C header missing!])) -AC_CHECK_HEADERS(arpa/inet.h malloc.h stdint.h sys/select.h varargs.h) +AC_CHECK_HEADERS(arpa/inet.h ctype.h malloc.h stdint.h sys/select.h varargs.h) # -- Datentypen -- @@ -122,7 +122,7 @@ AC_CHECK_FUNCS([ \ strstr waitpid \ ],,AC_MSG_ERROR([required function missing!])) -AC_CHECK_FUNCS(inet_aton sigaction snprintf vsnprintf) +AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf) # -- Konfigurationsoptionen -- |