diff options
author | Reuben Thomas <rrt@sc3d.org> | 2009-08-10 20:11:11 +0100 |
---|---|---|
committer | Reuben Thomas <rrt@sc3d.org> | 2009-08-10 20:11:11 +0100 |
commit | c6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f (patch) | |
tree | 90269678bc2a42a9492c62e07dbe08ecc10835a3 /m4/ax_cxx_rtti.m4 | |
parent | 386747c45473a6f4b7ca32a787c316d205705586 (diff) | |
download | autoconf-archive-c6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f.tar.gz |
More renamings missed previously.
Diffstat (limited to 'm4/ax_cxx_rtti.m4')
-rw-r--r-- | m4/ax_cxx_rtti.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/ax_cxx_rtti.m4 b/m4/ax_cxx_rtti.m4 index 6442509..99f8518 100644 --- a/m4/ax_cxx_rtti.m4 +++ b/m4/ax_cxx_rtti.m4 @@ -22,7 +22,7 @@ AC_DEFUN([AX_CXX_RTTI], [AC_CACHE_CHECK(whether the compiler supports Run-Time Type Identification, -ac_cv_cxx_rtti, +ax_cv_cxx_rtti, [AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE([#include <typeinfo> @@ -38,10 +38,10 @@ class Derived : public Base { public : Base *ptr = &d; return typeid (*ptr) == typeid (Derived); ], - ac_cv_cxx_rtti=yes, ac_cv_cxx_rtti=no) + ax_cv_cxx_rtti=yes, ax_cv_cxx_rtti=no) AC_LANG_RESTORE ]) -if test "$ac_cv_cxx_rtti" = yes; then +if test "$ax_cv_cxx_rtti" = yes; then AC_DEFINE(HAVE_RTTI,, [define if the compiler supports Run-Time Type Identification]) fi |