]> 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 aeda6863a51b4ad1aebc814778eedbd91013a5c8..87df99e82b532dd2070d8e6916ef811dd47eb328 100644 (file)
@@ -9,11 +9,23 @@
 # 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.1 2001/12/11 21:53:04 alex Exp $
+# $Id: configure.in,v 1.5 2001/12/21 23:54:26 alex Exp $
 #
 # $Log: configure.in,v $
-# Revision 1.1  2001/12/11 21:53:04  alex
-# Initial revision
+# 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.
+#
+# Revision 1.1.1.1  2001/12/11 21:53:04  alex
+# Imported sources to CVS.
 #
 
 # -- Initialisierung --
@@ -48,8 +60,23 @@ AC_CHECK_HEADER(exp.h,,AC_MSG_ERROR([Alex \"portability headers\" (portab.h an f
 
 AC_CHECK_HEADERS([netinet/in.h sys/socket.h],,[required C headers missing!])
 
+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!])
@@ -58,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-