diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-03-09 06:16:26 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-03-09 06:16:26 +0000 |
commit | b2f34f621114c900ea0fb3b107f79a71799dfbf7 (patch) | |
tree | 5d5dfbb0b30c60acde4f4b8aa1ab0572c22ec583 /llvm/autoconf/m4/cxx_hash_set.m4 | |
parent | 317293b504e5ef3e65e3dacc645fa465359adc26 (diff) | |
download | bcm5719-llvm-b2f34f621114c900ea0fb3b107f79a71799dfbf7.tar.gz bcm5719-llvm-b2f34f621114c900ea0fb3b107f79a71799dfbf7.zip |
Remove configurey-fu to autodetect hash_map and hash_set now that they are
no longer used in LLVM.
llvm-svn: 66406
Diffstat (limited to 'llvm/autoconf/m4/cxx_hash_set.m4')
-rw-r--r-- | llvm/autoconf/m4/cxx_hash_set.m4 | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/llvm/autoconf/m4/cxx_hash_set.m4 b/llvm/autoconf/m4/cxx_hash_set.m4 deleted file mode 100644 index e9d28bfe35b..00000000000 --- a/llvm/autoconf/m4/cxx_hash_set.m4 +++ /dev/null @@ -1,60 +0,0 @@ -# Check for hash_set extension. This is modified from -# http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_have_ext_hash_set.html -AC_DEFUN([AC_CXX_HAVE_STD_EXT_HASH_SET], -[AC_CACHE_CHECK([whether the compiler has <ext/hash_set> defining template class std::hash_set], - ac_cv_cxx_have_std_ext_hash_set, - [AC_REQUIRE([AC_CXX_NAMESPACES]) - AC_LANG_PUSH([C++]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <ext/hash_set> -#ifdef HAVE_NAMESPACES -using namespace std; -#endif]], [[hash_set<int> t; ]])],[ac_cv_cxx_have_std_ext_hash_set=yes],[ac_cv_cxx_have_std_ext_hash_set=no]) - AC_LANG_POP([C++])]) - if test "$ac_cv_cxx_have_std_ext_hash_set" = yes - then - AC_DEFINE(HAVE_STD_EXT_HASH_SET,1,[Have hash_set in std namespace]) - else - AC_DEFINE(HAVE_STD_EXT_HASH_SET,0,[Does not have hash_set in std namespace]) - fi - ]) - -AC_DEFUN([AC_CXX_HAVE_GNU_EXT_HASH_SET], -[AC_CACHE_CHECK( - [whether the compiler has <ext/hash_set> defining template class __gnu_cxx::hash_set], - ac_cv_cxx_have_gnu_ext_hash_set, - [AC_REQUIRE([AC_CXX_NAMESPACES]) - AC_LANG_PUSH([C++]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <ext/hash_set> -#ifdef HAVE_NAMESPACES -using namespace __gnu_cxx; -#endif]], [[hash_set<int> t; ]])],[ac_cv_cxx_have_gnu_ext_hash_set=yes],[ac_cv_cxx_have_gnu_ext_hash_set=no]) - AC_LANG_POP([C++])]) - if test "$ac_cv_cxx_have_gnu_ext_hash_set" = yes - then - AC_DEFINE(HAVE_GNU_EXT_HASH_SET,1,[Have hash_set in gnu namespace]) - else - AC_DEFINE(HAVE_GNU_EXT_HASH_SET,0,[Does not have hash_set in gnu namespace]) - fi - ]) - -AC_DEFUN([AC_CXX_HAVE_GLOBAL_HASH_SET], -[AC_CACHE_CHECK([whether the compiler has <hash_set> defining template class ::hash_set], - ac_cv_cxx_have_global_hash_set, - [AC_REQUIRE([AC_CXX_NAMESPACES]) - AC_LANG_PUSH([C++]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <hash_set>]], [[hash_set<int> t; return 0;]])],[ac_cv_cxx_have_global_hash_set=yes],[ac_cv_cxx_have_global_hash_set=no]) - AC_LANG_POP([C++])]) - if test "$ac_cv_cxx_have_global_hash_set" = yes - then - AC_DEFINE(HAVE_GLOBAL_HASH_SET,1,[Have hash_set in global namespace]) - else - AC_DEFINE(HAVE_GLOBAL_HASH_SET,0,[Does not have hash_set in global namespace]) - fi - ]) - -AC_DEFUN([AC_CXX_HAVE_HASH_SET], -[AC_CXX_HAVE_STD_EXT_HASH_SET - AC_CXX_HAVE_GNU_EXT_HASH_SET - AC_CXX_HAVE_GLOBAL_HASH_SET]) - - |