blob: 578dcc4a21e8e61d18a96da73aa0791bd2cfab47 [file] [log] [blame]
Reid Spencerb15e69a2004-09-07 06:56:14 +00001# Check for standard iterator extension. This is modified from
2# http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_have_ext_hash_set.html
3AC_DEFUN([AC_CXX_HAVE_STD_ITERATOR],
4[AC_CACHE_CHECK(whether the compiler has the standard iterator,
5ac_cv_cxx_have_std_iterator,
6[AC_REQUIRE([AC_CXX_NAMESPACES])
Reid Spencer70eca352004-09-19 22:31:49 +00007 AC_LANG_PUSH([C++])
8 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
9 [[#include <iterator>
Reid Spencerb15e69a2004-09-07 06:56:14 +000010#ifdef HAVE_NAMESPACES
11using namespace std;
Reid Spencer70eca352004-09-19 22:31:49 +000012#endif]],
13 [[iterator<int,int,int> t; return 0;]])],
14 ac_cv_cxx_have_std_iterator=yes,
15 ac_cv_cxx_have_std_iterator=no)
16 AC_LANG_POP([C++])
Reid Spencerb15e69a2004-09-07 06:56:14 +000017])
18HAVE_STD_ITERATOR=0
19if test "$ac_cv_cxx_have_std_iterator" = yes
20then
21 HAVE_STD_ITERATOR=1
22fi
23AC_SUBST(HAVE_STD_ITERATOR)])
24
25