summaryrefslogtreecommitdiff
path: root/m4/ax_cxx_have_koenig_lookup.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_koenig_lookup.m4
parent386747c45473a6f4b7ca32a787c316d205705586 (diff)
downloadautoconf-archive-c6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f.tar.gz
More renamings missed previously.
Diffstat (limited to 'm4/ax_cxx_have_koenig_lookup.m4')
-rw-r--r--m4/ax_cxx_have_koenig_lookup.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_cxx_have_koenig_lookup.m4 b/m4/ax_cxx_have_koenig_lookup.m4
index 1b69c3c..0960578 100644
--- a/m4/ax_cxx_have_koenig_lookup.m4
+++ b/m4/ax_cxx_have_koenig_lookup.m4
@@ -21,7 +21,7 @@
AC_DEFUN([AX_CXX_HAVE_KOENIG_LOOKUP],
[AC_CACHE_CHECK(whether the compiler implements Koenig lookup,
- ac_cv_cxx_have_koenig_lookup,
+ ax_cv_cxx_have_koenig_lookup,
[AC_LANG_PUSH(C++)
AC_TRY_COMPILE([
namespace N1 {
@@ -37,10 +37,10 @@ AC_DEFUN([AX_CXX_HAVE_KOENIG_LOOKUP],
}
}
],[],
- ac_cv_cxx_have_koenig_lookup=yes,
- ac_cv_cxx_have_koenig_lookup=no)
+ ax_cv_cxx_have_koenig_lookup=yes,
+ ax_cv_cxx_have_koenig_lookup=no)
AC_LANG_POP])
- if test "$ac_cv_cxx_have_koenig_lookup" = yes; then
+ if test "$ax_cv_cxx_have_koenig_lookup" = yes; then
AC_DEFINE(CXX_HAVE_KOENIG_LOOKUP,1,
[define to 1 if the compiler implements Koenig lookup])
fi