Bring the script out of the dark ages and into modern autoconfness.
[oota-llvm.git] / autoconf / m4 / cxx_fwd_iterator.m4
1 # Check for forward iterator extension.  This is modified from
2 # http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_have_ext_hash_set.html
3 AC_DEFUN([AC_CXX_HAVE_FWD_ITERATOR],
4 [AC_CACHE_CHECK(whether the compiler has forward iterators,
5 ac_cv_cxx_have_fwd_iterator,
6 [AC_REQUIRE([AC_CXX_NAMESPACES])
7   AC_LANG_PUSH([C++])
8   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <iterator>
9 #ifdef HAVE_NAMESPACES
10 using namespace std;
11 #endif]], [[forward_iterator<int,int> t; return 0;]])],[ac_cv_cxx_have_fwd_iterator=yes],[ac_cv_cxx_have_fwd_iterator=no])
12   AC_LANG_POP([C++])
13 ])
14 HAVE_FWD_ITERATOR=0
15 if test "$ac_cv_cxx_have_fwd_iterator" = yes
16 then
17    HAVE_FWD_ITERATOR=1
18 fi
19 AC_SUBST(HAVE_FWD_ITERATOR)])
20
21