- GCC: add "-Wtraditional -Wpointer-arith -Wstrict-prototypes" to CFLAGS.

This commit is contained in:
Alexander Barton 2002-12-25 13:23:11 +00:00
parent d9a13b317e
commit 77751e0fbf
1 changed files with 8 additions and 5 deletions

View File

@ -9,7 +9,7 @@
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # 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 -- # -- Initialisierung --
@ -201,12 +201,14 @@ AC_DEFINE_UNQUOTED(TARGET_OS, "$target_os" )
# -- Variablen -- # -- Variablen --
if test "$GCC" = "yes"; then 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 fi
the_CFLAGS="$CFLAGS" CFLAGS="$the_CFLAGS $add_CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
# -- Ausgabe der Dateien -- # -- Ausgabe der Dateien --
@ -237,6 +239,7 @@ M=`eval echo ${mandir}` ; M=`eval echo ${M}`
echo " host: ${host}" echo " host: ${host}"
echo " compiler: ${CC}" echo " compiler: ${CC}"
echo " compiler flags: ${the_CFLAGS}" echo " compiler flags: ${the_CFLAGS}"
test -n "$add_CFLAGS" && echo " ${add_CFLAGS}"
echo " preprocessor flags: ${CPPFLAGS}" echo " preprocessor flags: ${CPPFLAGS}"
echo " linker flags: ${LDFLAGS}" echo " linker flags: ${LDFLAGS}"
echo " libraries: ${LIBS}" echo " libraries: ${LIBS}"