diff options
| author | Alexander Barton <alex@barton.de> | 2002-09-16 11:13:43 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-09-16 11:13:43 +0000 |
| commit | 157718a7a35cdbc4e25fca969ad9f16ae7e0f82c (patch) | |
| tree | 7d9d67de6d88621decea644219007a5482e4ce83 | |
| parent | 72b95c4a66617ced7937e94c06b61006b759bd0f (diff) | |
| download | ngircd-157718a7a35cdbc4e25fca969ad9f16ae7e0f82c.tar.gz ngircd-157718a7a35cdbc4e25fca969ad9f16ae7e0f82c.zip | |
- es wird nun auch auf "sys/select.h" geprueft. U.a. fuer AIX notwendig.
- Versionsnummer auf 0.5.0-pre1 angehoben.
| -rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 0438872a..a005f468 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.57 2002/09/09 10:00:15 alex Exp $ +# $Id: configure.in,v 1.58 2002/09/16 11:13:43 alex Exp $ # # -- Initialisierung -- @@ -18,7 +18,7 @@ AC_INIT AC_PREREQ(2.50) AC_CANONICAL_TARGET AC_CONFIG_SRCDIR(src/config.h.in) -AM_INIT_AUTOMAKE(ngircd,CurrentCVS) +AM_INIT_AUTOMAKE(ngircd,0.5.0-pre1) AM_CONFIG_HEADER(src/config.h) # -- Templates fuer config.h -- @@ -66,7 +66,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 varargs.h) +AC_CHECK_HEADERS(arpa/inet.h malloc.h stdint.h sys/select.h varargs.h) # -- Datentypen -- |