]> arthur.barton.de Git - ngircd.git/blobdiff - configure.in
Remove INT, LONG, BOOLEAN, STATIC, CONST, CHAR datatypes.
[ngircd.git] / configure.in
index cbd9fec290b035378330ba7f4f2bc967633107d9..695a42ccfc8d976756dc850a08773cb5612d666b 100644 (file)
@@ -8,7 +8,7 @@
 # (at your option) any later version.
 # Please read the file COPYING, README and AUTHORS for more information.
 #
-# $Id: configure.in,v 1.104 2004/12/26 00:14:33 alex Exp $
+# $Id: configure.in,v 1.106 2005/03/19 18:43:48 fw Exp $
 #
 
 # -- Initialisation --
@@ -85,14 +85,14 @@ AC_CHECK_HEADERS([ \
        strings.h sys/socket.h sys/time.h unistd.h \
        ],,AC_MSG_ERROR([required C header missing!]))
 
-AC_CHECK_HEADERS([arpa/inet.h ctype.h malloc.h stdint.h varargs.h])
+AC_CHECK_HEADERS([arpa/inet.h ctype.h malloc.h stdbool.h stddef.h varargs.h])
 
 # -- Datatypes --
 
 AC_MSG_CHECKING(whether socklen_t exists)
 AC_TRY_COMPILE([
-       #include <sys/socket.h>
-       #include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/types.h>
        ],[
        socklen_t a, b;
        a = 2; b = 4; a += b;