]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/detail/workaround.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
87011dee4564e20a8eeb10b33189615be6d783a8
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / detail / workaround.hpp
1 // Copyright David Abrahams 2002.\r
2 // Distributed under the Boost Software License, Version 1.0. (See\r
3 // accompanying file LICENSE_1_0.txt or copy at\r
4 // http://www.boost.org/LICENSE_1_0.txt)\r
5 #ifndef WORKAROUND_DWA2002126_HPP\r
6 # define WORKAROUND_DWA2002126_HPP\r
7 \r
8 // Compiler/library version workaround macro\r
9 //\r
10 // Usage:\r
11 //\r
12 //     #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)\r
13 //        // workaround for eVC4 and VC6\r
14 //        ... // workaround code here\r
15 //     #endif\r
16 //\r
17 // When BOOST_STRICT_CONFIG is defined, expands to 0. Otherwise, the\r
18 // first argument must be undefined or expand to a numeric\r
19 // value. The above expands to:\r
20 //\r
21 //     (BOOST_MSVC) != 0 && (BOOST_MSVC) < 1300\r
22 //\r
23 // When used for workarounds that apply to the latest known version \r
24 // and all earlier versions of a compiler, the following convention \r
25 // should be observed:\r
26 //\r
27 //     #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1301))\r
28 //\r
29 // The version number in this case corresponds to the last version in\r
30 // which the workaround was known to have been required. When\r
31 // BOOST_DETECT_OUTDATED_WORKAROUNDS is not the defined, the macro\r
32 // BOOST_TESTED_AT(x) expands to "!= 0", which effectively activates\r
33 // the workaround for any version of the compiler. When\r
34 // BOOST_DETECT_OUTDATED_WORKAROUNDS is defined, a compiler warning or\r
35 // error will be issued if the compiler version exceeds the argument\r
36 // to BOOST_TESTED_AT().  This can be used to locate workarounds which\r
37 // may be obsoleted by newer versions.\r
38 \r
39 # ifndef BOOST_STRICT_CONFIG\r
40 \r
41 #include <boost/config.hpp>\r
42 \r
43 #ifndef __BORLANDC__\r
44 #define __BORLANDC___WORKAROUND_GUARD 1\r
45 #else\r
46 #define __BORLANDC___WORKAROUND_GUARD 0\r
47 #endif\r
48 #ifndef __CODEGEARC__\r
49 #define __CODEGEARC___WORKAROUND_GUARD 1\r
50 #else\r
51 #define __CODEGEARC___WORKAROUND_GUARD 0\r
52 #endif\r
53 #ifndef _MSC_VER\r
54 #define _MSC_VER_WORKAROUND_GUARD 1\r
55 #else\r
56 #define _MSC_VER_WORKAROUND_GUARD 0\r
57 #endif\r
58 #ifndef _MSC_FULL_VER\r
59 #define _MSC_FULL_VER_WORKAROUND_GUARD 1\r
60 #else\r
61 #define _MSC_FULL_VER_WORKAROUND_GUARD 0\r
62 #endif\r
63 #ifndef BOOST_MSVC\r
64 #define BOOST_MSVC_WORKAROUND_GUARD 1\r
65 #else\r
66 #define BOOST_MSVC_WORKAROUND_GUARD 0\r
67 #endif\r
68 #ifndef __GNUC__\r
69 #define __GNUC___WORKAROUND_GUARD 1\r
70 #else\r
71 #define __GNUC___WORKAROUND_GUARD 0\r
72 #endif\r
73 #ifndef __GNUC_MINOR__\r
74 #define __GNUC_MINOR___WORKAROUND_GUARD 1\r
75 #else\r
76 #define __GNUC_MINOR___WORKAROUND_GUARD 0\r
77 #endif\r
78 #ifndef __GNUC_PATCHLEVEL__\r
79 #define __GNUC_PATCHLEVEL___WORKAROUND_GUARD 1\r
80 #else\r
81 #define __GNUC_PATCHLEVEL___WORKAROUND_GUARD 0\r
82 #endif\r
83 #ifndef __IBMCPP__\r
84 #define __IBMCPP___WORKAROUND_GUARD 1\r
85 #else\r
86 #define __IBMCPP___WORKAROUND_GUARD 0\r
87 #endif\r
88 #ifndef __SUNPRO_CC\r
89 #define __SUNPRO_CC_WORKAROUND_GUARD 1\r
90 #else\r
91 #define __SUNPRO_CC_WORKAROUND_GUARD 0\r
92 #endif\r
93 #ifndef __DECCXX_VER\r
94 #define __DECCXX_VER_WORKAROUND_GUARD 1\r
95 #else\r
96 #define __DECCXX_VER_WORKAROUND_GUARD 0\r
97 #endif\r
98 #ifndef __MWERKS__\r
99 #define __MWERKS___WORKAROUND_GUARD 1\r
100 #else\r
101 #define __MWERKS___WORKAROUND_GUARD 0\r
102 #endif\r
103 #ifndef __EDG__\r
104 #define __EDG___WORKAROUND_GUARD 1\r
105 #else\r
106 #define __EDG___WORKAROUND_GUARD 0\r
107 #endif\r
108 #ifndef __EDG_VERSION__\r
109 #define __EDG_VERSION___WORKAROUND_GUARD 1\r
110 #else\r
111 #define __EDG_VERSION___WORKAROUND_GUARD 0\r
112 #endif\r
113 #ifndef __HP_aCC\r
114 #define __HP_aCC_WORKAROUND_GUARD 1\r
115 #else\r
116 #define __HP_aCC_WORKAROUND_GUARD 0\r
117 #endif\r
118 #ifndef __hpxstd98\r
119 #define __hpxstd98_WORKAROUND_GUARD 1\r
120 #else\r
121 #define __hpxstd98_WORKAROUND_GUARD 0\r
122 #endif\r
123 #ifndef _CRAYC\r
124 #define _CRAYC_WORKAROUND_GUARD 1\r
125 #else\r
126 #define _CRAYC_WORKAROUND_GUARD 0\r
127 #endif\r
128 #ifndef __DMC__\r
129 #define __DMC___WORKAROUND_GUARD 1\r
130 #else\r
131 #define __DMC___WORKAROUND_GUARD 0\r
132 #endif\r
133 #ifndef MPW_CPLUS\r
134 #define MPW_CPLUS_WORKAROUND_GUARD 1\r
135 #else\r
136 #define MPW_CPLUS_WORKAROUND_GUARD 0\r
137 #endif\r
138 #ifndef __COMO__\r
139 #define __COMO___WORKAROUND_GUARD 1\r
140 #else\r
141 #define __COMO___WORKAROUND_GUARD 0\r
142 #endif\r
143 #ifndef __COMO_VERSION__\r
144 #define __COMO_VERSION___WORKAROUND_GUARD 1\r
145 #else\r
146 #define __COMO_VERSION___WORKAROUND_GUARD 0\r
147 #endif\r
148 #ifndef __INTEL_COMPILER\r
149 #define __INTEL_COMPILER_WORKAROUND_GUARD 1\r
150 #else\r
151 #define __INTEL_COMPILER_WORKAROUND_GUARD 0\r
152 #endif\r
153 #ifndef __ICL\r
154 #define __ICL_WORKAROUND_GUARD 1\r
155 #else\r
156 #define __ICL_WORKAROUND_GUARD 0\r
157 #endif\r
158 #ifndef _COMPILER_VERSION\r
159 #define _COMPILER_VERSION_WORKAROUND_GUARD 1\r
160 #else\r
161 #define _COMPILER_VERSION_WORKAROUND_GUARD 0\r
162 #endif\r
163 \r
164 #ifndef _RWSTD_VER\r
165 #define _RWSTD_VER_WORKAROUND_GUARD 1\r
166 #else\r
167 #define _RWSTD_VER_WORKAROUND_GUARD 0\r
168 #endif\r
169 #ifndef BOOST_RWSTD_VER\r
170 #define BOOST_RWSTD_VER_WORKAROUND_GUARD 1\r
171 #else\r
172 #define BOOST_RWSTD_VER_WORKAROUND_GUARD 0\r
173 #endif\r
174 #ifndef __GLIBCPP__\r
175 #define __GLIBCPP___WORKAROUND_GUARD 1\r
176 #else\r
177 #define __GLIBCPP___WORKAROUND_GUARD 0\r
178 #endif\r
179 #ifndef _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC\r
180 #define _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC_WORKAROUND_GUARD 1\r
181 #else\r
182 #define _GLIBCXX_USE_C99_FP_MACROS_DYNAMIC_WORKAROUND_GUARD 0\r
183 #endif\r
184 #ifndef __SGI_STL_PORT\r
185 #define __SGI_STL_PORT_WORKAROUND_GUARD 1\r
186 #else\r
187 #define __SGI_STL_PORT_WORKAROUND_GUARD 0\r
188 #endif\r
189 #ifndef _STLPORT_VERSION\r
190 #define _STLPORT_VERSION_WORKAROUND_GUARD 1\r
191 #else\r
192 #define _STLPORT_VERSION_WORKAROUND_GUARD 0\r
193 #endif\r
194 #ifndef __LIBCOMO_VERSION__\r
195 #define __LIBCOMO_VERSION___WORKAROUND_GUARD 1\r
196 #else\r
197 #define __LIBCOMO_VERSION___WORKAROUND_GUARD 0\r
198 #endif\r
199 #ifndef _CPPLIB_VER\r
200 #define _CPPLIB_VER_WORKAROUND_GUARD 1\r
201 #else\r
202 #define _CPPLIB_VER_WORKAROUND_GUARD 0\r
203 #endif\r
204 \r
205 #ifndef BOOST_INTEL_CXX_VERSION\r
206 #define BOOST_INTEL_CXX_VERSION_WORKAROUND_GUARD 1\r
207 #else\r
208 #define BOOST_INTEL_CXX_VERSION_WORKAROUND_GUARD 0\r
209 #endif\r
210 #ifndef BOOST_INTEL_WIN\r
211 #define BOOST_INTEL_WIN_WORKAROUND_GUARD 1\r
212 #else\r
213 #define BOOST_INTEL_WIN_WORKAROUND_GUARD 0\r
214 #endif\r
215 #ifndef BOOST_DINKUMWARE_STDLIB\r
216 #define BOOST_DINKUMWARE_STDLIB_WORKAROUND_GUARD 1\r
217 #else\r
218 #define BOOST_DINKUMWARE_STDLIB_WORKAROUND_GUARD 0\r
219 #endif\r
220 #ifndef BOOST_INTEL\r
221 #define BOOST_INTEL_WORKAROUND_GUARD 1\r
222 #else\r
223 #define BOOST_INTEL_WORKAROUND_GUARD 0\r
224 #endif\r
225 // Always define to zero, if it's used it'll be defined my MPL:\r
226 #define BOOST_MPL_CFG_GCC_WORKAROUND_GUARD 0\r
227 \r
228 #  define BOOST_WORKAROUND(symbol, test)                \\r
229          ((symbol ## _WORKAROUND_GUARD + 0 == 0) &&     \\r
230          (symbol != 0) && (1 % (( (symbol test) ) + 1)))\r
231 //                              ^ ^           ^ ^\r
232 // The extra level of parenthesis nesting above, along with the\r
233 // BOOST_OPEN_PAREN indirection below, is required to satisfy the\r
234 // broken preprocessor in MWCW 8.3 and earlier.\r
235 //\r
236 // The basic mechanism works as follows:\r
237 //      (symbol test) + 1        =>   if (symbol test) then 2 else 1\r
238 //      1 % ((symbol test) + 1)  =>   if (symbol test) then 1 else 0\r
239 //\r
240 // The complication with % is for cooperation with BOOST_TESTED_AT().\r
241 // When "test" is BOOST_TESTED_AT(x) and\r
242 // BOOST_DETECT_OUTDATED_WORKAROUNDS is #defined,\r
243 //\r
244 //      symbol test              =>   if (symbol <= x) then 1 else -1\r
245 //      (symbol test) + 1        =>   if (symbol <= x) then 2 else 0\r
246 //      1 % ((symbol test) + 1)  =>   if (symbol <= x) then 1 else divide-by-zero\r
247 //\r
248 \r
249 #  ifdef BOOST_DETECT_OUTDATED_WORKAROUNDS\r
250 #   define BOOST_OPEN_PAREN (\r
251 #   define BOOST_TESTED_AT(value)  > value) ?(-1): BOOST_OPEN_PAREN 1\r
252 #  else\r
253 #   define BOOST_TESTED_AT(value) != ((value)-(value))\r
254 #  endif\r
255 \r
256 # else\r
257 \r
258 #  define BOOST_WORKAROUND(symbol, test) 0\r
259 \r
260 # endif \r
261 \r
262 #endif // WORKAROUND_DWA2002126_HPP\r