diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-25 19:30:11 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-25 19:30:11 +0000 |
commit | 3e37364a23bc60701bef9cacac46af68709fff20 (patch) | |
tree | 95cd884172236a1ee6f9e23673e2e7c784b20e29 /gcc/config.in | |
parent | 92f708ec3ad4e3137f5fc778e4ef88cba9cbe6f5 (diff) | |
download | gcc-3e37364a23bc60701bef9cacac46af68709fff20.tar.gz |
* aclocal.m4: Fixed typo.
(gcc_AC_HEADER_STDBOOL): Define.
(gcc_AC_C__BOOL): Define.
* configure.in: Use them.
(AC_CHECK_HEADERS): Remove stdbool.h
* configure, config.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42578 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/config.in b/gcc/config.in index 50cefde2327..bfe43be1fcc 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -221,9 +221,6 @@ /* Define if you have the <nl_types.h> header file. */ #undef HAVE_NL_TYPES_H -/* Define if you have the <stdbool.h> header file. */ -#undef HAVE_STDBOOL_H - /* Define if you have the <stddef.h> header file. */ #undef HAVE_STDDEF_H @@ -305,6 +302,9 @@ /* Define if your compiler supports the `__int64' type. */ #undef HAVE___INT64 +/* Define if the `_Bool' type is built-in. */ +#undef HAVE__BOOL + /* The number of bytes in type short */ #undef SIZEOF_SHORT @@ -326,6 +326,9 @@ /* Always define this when using the GNU C Library */ #undef _GNU_SOURCE +/* Define if you have a working <stdbool.h> header file. */ +#undef HAVE_STDBOOL_H + /* Define if you can safely include both <string.h> and <strings.h>. */ #undef STRING_WITH_STRINGS |