summaryrefslogtreecommitdiff
path: root/m4/ax_cxx_have_stl.m4
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2009-08-10 20:11:11 +0100
committerReuben Thomas <rrt@sc3d.org>2009-08-10 20:11:11 +0100
commitc6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f (patch)
tree90269678bc2a42a9492c62e07dbe08ecc10835a3 /m4/ax_cxx_have_stl.m4
parent386747c45473a6f4b7ca32a787c316d205705586 (diff)
downloadautoconf-archive-c6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f.tar.gz
More renamings missed previously.
Diffstat (limited to 'm4/ax_cxx_have_stl.m4')
-rw-r--r--m4/ax_cxx_have_stl.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_cxx_have_stl.m4 b/m4/ax_cxx_have_stl.m4
index fad5dd9..488aacb 100644
--- a/m4/ax_cxx_have_stl.m4
+++ b/m4/ax_cxx_have_stl.m4
@@ -21,8 +21,8 @@
AC_DEFUN([AX_CXX_HAVE_STL],
[AC_CACHE_CHECK(whether the compiler supports Standard Template Library,
-ac_cv_cxx_have_stl,
-[AC_REQUIRE([AC_CXX_NAMESPACES])
+ax_cv_cxx_have_stl,
+[AC_REQUIRE([AX_CXX_NAMESPACES])
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE([#include <list>
@@ -31,10 +31,10 @@ ac_cv_cxx_have_stl,
using namespace std;
#endif],[list<int> x; x.push_back(5);
list<int>::iterator iter = x.begin(); if (iter != x.end()) ++iter; return 0;],
- ac_cv_cxx_have_stl=yes, ac_cv_cxx_have_stl=no)
+ ax_cv_cxx_have_stl=yes, ax_cv_cxx_have_stl=no)
AC_LANG_RESTORE
])
-if test "$ac_cv_cxx_have_stl" = yes; then
+if test "$ax_cv_cxx_have_stl" = yes; then
AC_DEFINE(HAVE_STL,,[define if the compiler supports Standard Template Library])
fi
])