commit - cb7931cc278647fc7e33c98cdf1a7c802157e265
commit + 4a8fd02f997806614a28fe23e028e63755c36604
blob - 4fe4310a3149f481721a85976ff081c33de7febb
blob + 3e8f90a7b36600bc4b5a4207518da9874eab550d
--- 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.15 2002/01/02 02:52:09 alex Exp $
+# $Id: configure.in,v 1.16 2002/01/02 13:41:36 alex Exp $
#
# $Log: configure.in,v $
+# Revision 1.16 2002/01/02 13:41:36 alex
+# - CFLAGS wird nur noch gesetzt, wenn der GCC verwendet wird.
+#
# Revision 1.15 2002/01/02 02:52:09 alex
# - Copyright-Texte angepasst ;-)
#
# -- Variablen --
-CFLAGS="-Wall -g $CFLAGS"
-
# -- C Compiler --
AC_PROG_CC
fi
)
-AC_ARG_ENABLE(debug,
- [ --enable-debug show additional debug output],
- if test "$enableval" = "yes"; then
- AC_DEFINE(DEBUG, 1)
- AC_MSG_RESULT([enabling additional debug output])
- fi
-)
-
AC_ARG_ENABLE(sniffer,
[ --enable-sniffer enable network traffic monitor (enables debug mode!)],
if test "$enableval" = "yes"; then
- AC_DEFINE(DEBUG, 1)
- AC_MSG_RESULT([enabling additional debug output])
AC_DEFINE(SNIFFER, 1)
AC_MSG_RESULT([enabling network traffic monitor])
+ x_debug_on=yes
fi
)
+AC_ARG_ENABLE(debug,
+ [ --enable-debug show additional debug output],
+ if test "$enableval" = "yes"; then x_debug_on=yes; fi
+)
+if test "$x_debug_on" = "yes"; then
+ AC_DEFINE(DEBUG, 1)
+ AC_MSG_RESULT([enabling additional debug output])
+fi
+
+# -- Variablen II --
+
+if test "$GCC" = "yes"; then
+ CFLAGS="-Wall $CFLAGS"
+fi
+
# -- Ausgabe --
AC_OUTPUT([ \