diff options
| author | Florian Westphal <fw@strlen.de> | 2005-03-19 18:43:48 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2005-03-19 18:43:48 +0000 |
| commit | 8adff5922376676c2eeb49de1cbab86cc345b887 (patch) | |
| tree | f08c4c54b987b83436dfce2cfe5af829c8ccf689 /configure.in | |
| parent | 27d93d7d8c1dacb3a9874084a67629df26f96bb1 (diff) | |
| download | ngircd-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.in | 4 |
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 -- |