diff options
author | Zack Weinberg <zack@codesourcery.com> | 2004-06-12 05:53:54 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-06-12 05:53:54 +0000 |
commit | 2fac9c017f9f3339fc56b843a4e0b372d1f770a1 (patch) | |
tree | 2fa35b599541c16096e28a7ecc50ed3a0c71a81f /libcpp/configure.ac | |
parent | 9ade247982d622219e3935880cd2500d2d3c42f2 (diff) | |
download | gcc-2fac9c017f9f3339fc56b843a4e0b372d1f770a1.zip gcc-2fac9c017f9f3339fc56b843a4e0b372d1f770a1.tar.gz gcc-2fac9c017f9f3339fc56b843a4e0b372d1f770a1.tar.bz2 |
configure.ac: Don't invoke ACX_HEADER_STDBOOL.
gcc:
* configure.ac: Don't invoke ACX_HEADER_STDBOOL.
* configure, config.in: Regenerate.
* system.h: Unconditionally define bool as unsigned char,
BOOL_BITFIELD as unsigned int.
* domwalk.h: Use BOOL_BITFIELD.
libcpp:
* configure.ac: Don't invoke ACX_HEADER_STDBOOL.
* configure, config.in: Regenerate.
* system.h: Unconditionally define bool as unsigned char,
BOOL_BITFIELD as unsigned int.
* .cvsignore: New file.
From-SVN: r83020
Diffstat (limited to 'libcpp/configure.ac')
-rw-r--r-- | libcpp/configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcpp/configure.ac b/libcpp/configure.ac index d160899..ab69544 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ(2.57) +AC_PREREQ(2.59) AC_INIT(cpplib, [ ], gcc-bugs@gcc.gnu.org, cpplib) AC_CONFIG_SRCDIR(ucnid.h) AC_CANONICAL_SYSTEM @@ -15,7 +15,6 @@ AC_PROG_RANLIB # Checks for header files. AC_HEADER_TIME ACX_HEADER_STRING -ACX_HEADER_STDBOOL AC_CHECK_HEADERS(iconv.h locale.h fcntl.h limits.h stddef.h \ stdlib.h strings.h string.h sys/file.h unistd.h) |