diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-02 22:43:58 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-02 22:43:58 +0000 |
commit | 60f35dbadae8f0464254bf2c7eb76adad3fd985e (patch) | |
tree | c0dc251b6b07d5936c90463e2dc4fc456f4cd759 /gcc/config.in | |
parent | 47ee4671670e31483631748819b6c1b53e495313 (diff) | |
download | gcc-60f35dbadae8f0464254bf2c7eb76adad3fd985e.tar.gz |
* configure.ac: AC_DEFINE ENABLE_BUILD_WITH_CXX. Check for C++
header files unordered_map, tr1/unordered_map, and ext/hash_map.
* configure, config.in: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167396 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 7c5c617102a..89cb4664532 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -45,6 +45,12 @@ #endif +/* Define if building with C++. */ +#ifndef USED_FOR_TARGET +#undef ENABLE_BUILD_WITH_CXX +#endif + + /* Define if you want more run-time sanity checks. This one gets a grab bag of miscellaneous but relatively cheap checks. */ #ifndef USED_FOR_TARGET @@ -832,6 +838,12 @@ #endif +/* Define to 1 if you have the <ext/hash_map> header file. */ +#ifndef USED_FOR_TARGET +#undef HAVE_EXT_HASH_MAP +#endif + + /* Define to 1 if you have the <fcntl.h> header file. */ #ifndef USED_FOR_TARGET #undef HAVE_FCNTL_H @@ -1419,6 +1431,12 @@ #endif +/* Define to 1 if you have the <tr1/unordered_map> header file. */ +#ifndef USED_FOR_TARGET +#undef HAVE_TR1_UNORDERED_MAP +#endif + + /* Define to 1 if the system has the type `uintmax_t'. */ #ifndef USED_FOR_TARGET #undef HAVE_UINTMAX_T @@ -1437,6 +1455,12 @@ #endif +/* Define to 1 if you have the <unordered_map> header file. */ +#ifndef USED_FOR_TARGET +#undef HAVE_UNORDERED_MAP +#endif + + /* Define to 1 if the system has the type `unsigned long long int'. */ #ifndef USED_FOR_TARGET #undef HAVE_UNSIGNED_LONG_LONG_INT |