]> arthur.barton.de Git - ngircd-alex.git/blobdiff - configure.in
- Projektdatei fuer den Mac OS X Project Builder erstellt.
[ngircd-alex.git] / configure.in
index aeda6863a51b4ad1aebc814778eedbd91013a5c8..73ffd8af4c40871d8b251a3eb62099bfd3087cc2 100644 (file)
@@ -9,11 +9,20 @@
 # 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.4 2001/12/12 17:21:58 alex Exp $
 #
 # $Log: configure.in,v $
-# Revision 1.1  2001/12/11 21:53:04  alex
-# Initial revision
+# 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 +57,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!])
@@ -60,6 +84,6 @@ AC_CHECK_FUNCS([socket],,[required functions missing!])
 
 # -- Ausgabe --
 
-AC_OUTPUT([Makefile src/Makefile src/ngircd/Makefile])
+AC_OUTPUT([Makefile MacOSX/Makefile src/Makefile src/ngircd/Makefile])
 
 # -eof-