commit - d9a13b317e5fab3196dca20c9f84c06ba3616d2c
commit + 77751e0fbff145d8957f6c1e6ba186fa55dedb5d
blob - 28de5fce9e82545c748e102aed36a663b8e264ca
blob + 5f1afe1d5194a3e8493d837c5f3e18ef70554a39
--- configure.in
+++ configure.in
# 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.69 2002/11/30 22:14:47 alex Exp $
+# $Id: configure.in,v 1.70 2002/12/25 13:23:11 alex Exp $
#
# -- Initialisierung --
# -- 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="$the_CFLAGS $add_CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
-CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
-
# -- Ausgabe der Dateien --
AC_OUTPUT([ \
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}"