summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2005-03-19 18:43:48 +0000
committerFlorian Westphal <fw@strlen.de>2005-03-19 18:43:48 +0000
commit8adff5922376676c2eeb49de1cbab86cc345b887 (patch)
treef08c4c54b987b83436dfce2cfe5af829c8ccf689 /configure.in
parent27d93d7d8c1dacb3a9874084a67629df26f96bb1 (diff)
downloadngircd-8adff5922376676c2eeb49de1cbab86cc345b887.tar.gz
ngircd-8adff5922376676c2eeb49de1cbab86cc345b887.zip
Remove INT, LONG, BOOLEAN, STATIC, CONST, CHAR datatypes.
use stdbool.h / inttypes.h if available.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 2dbaad7e..695a42cc 100644
--- a/configure.in
+++ b/configure.in
@@ -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.105 2005/03/19 14:09:32 alex Exp $
+# $Id: configure.in,v 1.106 2005/03/19 18:43:48 fw Exp $
 #
 
 # -- Initialisation --
@@ -85,7 +85,7 @@ 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 --