]> arthur.barton.de Git - ngircd-alex.git/blobdiff - configure.in
- Signal-Handler aufgeraeumt; u.a. SIGPIPE wird nun korrekt ignoriert.
[ngircd-alex.git] / configure.in
index bd05338a9dbf12b5afdca2ae8af6822651a6f125..87df99e82b532dd2070d8e6916ef811dd47eb328 100644 (file)
@@ -9,9 +9,15 @@
 # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
 # der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
 #
-# $Id: configure.in,v 1.3 2001/12/12 01:58:53 alex Exp $
+# $Id: configure.in,v 1.5 2001/12/21 23:54:26 alex Exp $
 #
 # $Log: configure.in,v $
+# Revision 1.5  2001/12/21 23:54:26  alex
+# - zusaetzliche Debug-Ausgaben koennen eingeschaltet werden.
+#
+# Revision 1.4  2001/12/12 17:21:58  alex
+# - Projektdatei fuer den Mac OS X Project Builder erstellt.
+#
 # Revision 1.3  2001/12/12 01:58:53  alex
 # - Test auf socklen_t verbessert.
 #
@@ -79,8 +85,16 @@ AC_CHECK_FUNCS([socket],,[required functions missing!])
 
 # -- Konfigurationsoptionen --
 
+AC_ARG_ENABLE(debug,
+       [  --enable-debug          enable extra debug output],
+       if test "$enableval" = "yes"; then
+               AC_DEFINE(DEBUG, 1)
+               AC_MSG_RESULT([enabling extra debug output])
+       fi
+)
+
 # -- Ausgabe --
 
-AC_OUTPUT([Makefile src/Makefile src/ngircd/Makefile])
+AC_OUTPUT([Makefile MacOSX/Makefile src/Makefile src/ngircd/Makefile])
 
 # -eof-