]> 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 a84198ec7a1cbc3d32c9323118e905d86e8822a6..87df99e82b532dd2070d8e6916ef811dd47eb328 100644 (file)
@@ -9,9 +9,18 @@
 # 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.2 2001/12/11 22:04:21 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.
+#
 # Revision 1.2  2001/12/11 22:04:21  alex
 # - Test auf stdint.h (HAVE_STDINT_H) hinzugefuegt.
 #
@@ -55,6 +64,19 @@ AC_CHECK_HEADERS([stdint.h])
 
 # -- Datentypen --
 
+AC_MSG_CHECKING(whether socklen_t exists)
+AC_TRY_COMPILE([
+       #include <sys/socket.h>
+       #include <sys/types.h>
+       ],[
+       socklen_t a, b;
+       a = 2; b = 4; a += b;
+       ],[
+       AC_DEFINE(HAVE_socklen_t) AC_MSG_RESULT(yes)
+       ],[
+       AC_MSG_RESULT(no)
+])
+
 # -- Funktionen --
 
 AC_CHECK_FUNCS([socket],,[required functions missing!])
@@ -63,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-