Set fourth file version digit to signify rebuild.
[shibboleth/cpp-xmltooling.git] / m4 / acinclude.m4
1 dnl @synopsis AC_CXX_NAMESPACES
2 dnl
3 dnl If the compiler can prevent names clashes using namespaces, define
4 dnl HAVE_NAMESPACES.
5 dnl
6 dnl @author Luc Maisonobe
7 dnl
8 AC_DEFUN([AC_CXX_NAMESPACES],
9 [AC_CACHE_CHECK(whether the compiler implements namespaces,
10 ac_cv_cxx_namespaces,
11 [
12  AC_LANG_PUSH([C++])
13  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[namespace Outer { namespace Inner { int i = 0; }}]], [[using namespace Outer::Inner; return i;]])],[ac_cv_cxx_namespaces=yes],[ac_cv_cxx_namespaces=no])
14  AC_LANG_POP([])
15 ])
16 if test "$ac_cv_cxx_namespaces" = yes; then
17   AC_DEFINE(HAVE_NAMESPACES,1,[define if the compiler implements namespaces])
18 fi
19 ])
20
21
22 dnl
23 dnl @author Luc Maisonobe
24 dnl
25 AC_DEFUN([AC_CXX_REQUIRE_STL],
26 [AC_CACHE_CHECK(whether the compiler supports Standard Template Library,
27 ac_cv_cxx_have_stl,
28 [AC_REQUIRE([AC_CXX_NAMESPACES])
29  AC_LANG_PUSH([C++])
30  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <list>
31 #include <deque>
32 #ifdef HAVE_NAMESPACES
33 using namespace std;
34 #endif]], [[list<int> x; x.push_back(5);
35 list<int>::iterator iter = x.begin(); if (iter != x.end()) ++iter; return 0;]])],[ac_cv_cxx_have_stl=yes],[ac_cv_cxx_have_stl=no])
36  AC_LANG_POP([])
37 ])
38 if test "x_$ac_cv_cxx_have_stl" != x_yes; then
39   AC_MSG_ERROR([C++ Standard Template Libary unsupported])
40 fi
41 ])
42
43 dnl Determine whether we have gcc of a particular version or later,
44 dnl based on major, minor, patchlevel versions and date.
45 dnl AC_HAVE_GCC_VERSION(MAJOR_VERSION, MINOR_VERSION, PATCH_LEVEL, 
46 dnl     SNAPSHOT_DATE [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
47 AC_DEFUN([AC_HAVE_GCC_VERSION],
48 [AC_CACHE_CHECK([gcc is at least version $1.$2.$3.$4],
49           ac_cv_gcc_version_$1_$2_$3_$4,
50 [
51   if test x$GCC = x ; then ac_cv_gcc_version_$1_$2_$3_$4=no
52   else 
53     ac_gcc_date=`$CC -v 2>&1 | grep '^gcc version ' | sed 's/ (.*//; s/.* //'`
54     if test 0$ac_gcc_date -eq 0 ; then ac_gcc_date=0 ; fi
55     AC_EGREP_CPP([yes], [#define HAVE_GCC_VERSION(MAJOR, MINOR, MICRO, DATE) \
56     (__GNUC__ > (MAJOR) \
57      || (__GNUC__ == (MAJOR) && __GNUC_MINOR__ > (MINOR)) \
58      || (__GNUC__ == (MAJOR) && __GNUC_MINOR__ == (MINOR) \
59          && __GNUC_PATCHLEVEL__ > (MICRO)) \
60      || (__GNUC__ == (MAJOR) && __GNUC_MINOR__ == (MINOR) \
61          && __GNUC_PATCHLEVEL__ == (MICRO) && ${ac_gcc_date}L >= (DATE)))
62 #if HAVE_GCC_VERSION($1,$2,$3,$4)
63 yes
64 #endif],
65    AC_DEFINE_UNQUOTED(HAVE_GCC_VERSION_$1_$2_$3_$4, 1,
66      [Define to 1 if we have gcc $1.$2.$3 ($4)])
67    ac_cv_gcc_version_$1_$2_$3_$4=yes ; $5,
68    ac_cv_gcc_version_$1_$2_$3_$4=no ; $6)
69 fi
70 ])])dnl
71