summaryrefslogtreecommitdiff
path: root/build/cxx_std.m4
blob: 06d3c76c78130e49701125969178db3fcc299676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
## Copyright (c) 2009, 2011  Openismus GmbH  <http://www.openismus.com/>
##
## This file is part of glibmm.
##
## glibmm is free software: you can redistribute it and/or modify it
## under the terms of the GNU Lesser General Public License as published
## by the Free Software Foundation, either version 2.1 of the License,
## or (at your option) any later version.
##
## glibmm is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this library.  If not, see <http://www.gnu.org/licenses/>.

#serial 20110910

## GLIBMM_CXX_HAS_STD_ITERATOR_TRAITS()
##
## Check for standard-conform std::iterator_traits<>, and
## #define GLIBMM_HAVE_STD_ITERATOR_TRAITS on success.
##
AC_DEFUN([GLIBMM_CXX_HAS_STD_ITERATOR_TRAITS],
[
  AC_CACHE_CHECK(
    [whether the C++ library supports std::iterator_traits],
    [glibmm_cv_cxx_has_std_iterator_traits],
  [
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
    [[
      #include <iterator>
      using namespace std;
    ]],[[
      typedef iterator_traits<char*>::value_type ValueType;
    ]])],
      [glibmm_cv_cxx_has_std_iterator_traits='yes'],
      [glibmm_cv_cxx_has_std_iterator_traits='no']
    )
  ])

  AS_VAR_IF([glibmm_cv_cxx_has_std_iterator_traits], ['yes'],
            [AC_DEFINE([GLIBMM_HAVE_STD_ITERATOR_TRAITS], [1],
                       [Defined if std::iterator_traits<> is standard-conforming])])[]dnl
])


## GLIBMM_CXX_HAS_SUN_REVERSE_ITERATOR()
##
## Check for Sun libCstd style std::reverse_iterator,
## and #define GLIBMM_HAVE_SUN_REVERSE_ITERATOR if found.
##
AC_DEFUN([GLIBMM_CXX_HAS_SUN_REVERSE_ITERATOR],
[
  AC_CACHE_CHECK(
    [for non-standard Sun libCstd reverse_iterator],
    [glibmm_cv_cxx_has_sun_reverse_iterator],
  [
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
    [[
      #include <iterator>
      using namespace std;
    ]],[[
      typedef reverse_iterator<char*,random_access_iterator_tag,char,char&,char*,int> ReverseIter;
    ]])],
      [glibmm_cv_cxx_has_sun_reverse_iterator='yes'],
      [glibmm_cv_cxx_has_sun_reverse_iterator='no']
    )
  ])

  AS_VAR_IF([glibmm_cv_cxx_has_sun_reverse_iterator], ['yes'],
            [AC_DEFINE([GLIBMM_HAVE_SUN_REVERSE_ITERATOR], [1],
                       [Defined if std::reverse_iterator is in Sun libCstd style])])[]dnl
])


## GLIBMM_CXX_HAS_TEMPLATE_SEQUENCE_CTORS()
##
## Check whether the STL containers have templated sequence ctors,
## and #define GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS on success.
##
AC_DEFUN([GLIBMM_CXX_HAS_TEMPLATE_SEQUENCE_CTORS],
[
  AC_CACHE_CHECK(
    [whether STL containers have templated sequence constructors],
    [glibmm_cv_cxx_has_template_sequence_ctors],
  [
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
    [[
      #include <vector>
      #include <deque>
      #include <list>
      using namespace std;
    ]],[[
      const int array[8] = { 0, };
      vector<int>  test_vector (&array[0], &array[8]);
      deque<short> test_deque  (test_vector.begin(), test_vector.end());
      list<long>   test_list   (test_deque.begin(),  test_deque.end());
      test_vector.assign(test_list.begin(), test_list.end());
    ]])],
      [glibmm_cv_cxx_has_template_sequence_ctors='yes'],
      [glibmm_cv_cxx_has_template_sequence_ctors='no']
    )
  ])

  AS_VAR_IF([glibmm_cv_cxx_has_template_sequence_ctors], ['yes'],
            [AC_DEFINE([GLIBMM_HAVE_TEMPLATE_SEQUENCE_CTORS], [1],
                       [Defined if the STL containers have templated sequence ctors])])[]dnl
])

## GLIBMM_CXX_ALLOWS_STATIC_INLINE_NPOS()
##
## Check whether the a static member variable may be initialized inline to std::string::npos.
## The MipsPro (IRIX) compiler does not like this.
## and #define GLIBMM_HAVE_ALLOWS_STATIC_INLINE_NPOS on success.
##
AC_DEFUN([GLIBMM_CXX_ALLOWS_STATIC_INLINE_NPOS],
[
  AC_CACHE_CHECK(
    [whether the compiler allows a static member variable to be initialized inline to std::string::npos],
    [glibmm_cv_cxx_has_allows_static_inline_npos],
  [
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
    [[
      #include <string>
      #include <iostream>

      class ustringtest
      {
        public:
        //The MipsPro compiler (IRIX) says "The indicated constant value is not known",
        //so we need to initalize the static member data elsewhere.
        static const std::string::size_type ustringnpos = std::string::npos;
      };
    ]],[[
      std::cout << "npos=" << ustringtest::ustringnpos << std::endl;
    ]])],
      [glibmm_cv_cxx_has_allows_static_inline_npos='yes'],
      [glibmm_cv_cxx_has_allows_static_inline_npos='no']
    )
  ])

  AS_VAR_IF([glibmm_cv_cxx_has_allows_static_inline_npos], ['yes'],
            [AC_DEFINE([GLIBMM_HAVE_ALLOWS_STATIC_INLINE_NPOS], [1],
                       [Defined if a static member variable may be initialized inline to std::string::npos])])[]dnl
])