X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=configure.in;h=5f1afe1d5194a3e8493d837c5f3e18ef70554a39;hp=5ce47a20f5fa14f88f00c170ab57b8346749eff0;hb=5efd0987f31f589ae24ff6502858ad823580cd77;hpb=e553829a59f2f39b1cd6b0fdf559cdc5045abc9f diff --git a/configure.in b/configure.in index 5ce47a20..5f1afe1d 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.70 2002/12/25 13:23:11 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 -- @@ -201,12 +201,14 @@ AC_DEFINE_UNQUOTED(TARGET_OS, "$target_os" ) # -- Variablen -- if test "$GCC" = "yes"; then - CFLAGS="-Wall $CFLAGS" + the_CFLAGS="-Wall -Wtraditional -Wpointer-arith -Wstrict-prototypes" + add_CFLAGS="$CFLAGS $CFLAGS_ADD" +else + the_CFLAGS="$CFLAGS" + add_CFLAGS="$CFLAGS_ADD" fi -the_CFLAGS="$CFLAGS" - -CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'" +CFLAGS="$the_CFLAGS $add_CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'" # -- Ausgabe der Dateien -- @@ -237,6 +239,7 @@ M=`eval echo ${mandir}` ; M=`eval echo ${M}` echo " host: ${host}" echo " compiler: ${CC}" echo " compiler flags: ${the_CFLAGS}" +test -n "$add_CFLAGS" && echo " ${add_CFLAGS}" echo " preprocessor flags: ${CPPFLAGS}" echo " linker flags: ${LDFLAGS}" echo " libraries: ${LIBS}"