On Linux, uname -m reports the kernel type. Some Linux systems are 32-bit but
[oota-llvm.git] / autoconf / m4 / cxx_bidi_iterator.m4
index 959d4fc22471f6237822e5fa3419127dd9503e15..d7de85630b5f1766e2e9c797720e1a0f89052420 100644 (file)
@@ -13,9 +13,10 @@ using namespace std;
 #endif]], [[bidirectional_iterator<int,int> t; return 0;]])],[ac_cv_cxx_have_bi_iterator=yes],[ac_cv_cxx_have_bi_iterator=no])
   AC_LANG_POP([C++])
 ])
-HAVE_BI_ITERATOR=0
 if test "$ac_cv_cxx_have_bi_iterator" = yes
 then
-   HAVE_BI_ITERATOR=1
+  AC_DEFINE(HAVE_BI_ITERATOR,1,[Have bi-directional iterator])
+else
+  AC_DEFINE(HAVE_BI_ITERATOR,0,[Does not have bi-directional iterator])
 fi
-AC_SUBST(HAVE_BI_ITERATOR)])
+])