sl@0
|
1 |
/* STLport configuration file
|
sl@0
|
2 |
* It is internal STLport header - DO NOT include it directly
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/* Systems having GLIBC installed have different traits */
|
sl@0
|
6 |
#if ! defined (_STLP_USE_GLIBC) && ( defined (__linux__) || defined (__CYGWIN__) )
|
sl@0
|
7 |
# define _STLP_USE_GLIBC
|
sl@0
|
8 |
#endif
|
sl@0
|
9 |
|
sl@0
|
10 |
# if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 4)
|
sl@0
|
11 |
# define _STLP_NO_MEMBER_TEMPLATE_KEYWORD
|
sl@0
|
12 |
# endif
|
sl@0
|
13 |
|
sl@0
|
14 |
|
sl@0
|
15 |
# if defined(__FreeBSD__) || defined (__hpux) || defined(__amigaos__) || ( defined(__OS2__) && defined(__EMX__) )
|
sl@0
|
16 |
# define _STLP_NO_WCHAR_T
|
sl@0
|
17 |
# endif
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifdef __USLC__
|
sl@0
|
20 |
# include <config/stl_sco.h>
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
# if defined (__sun)
|
sl@0
|
24 |
|
sl@0
|
25 |
// gcc does not support ELF64 yet ; however; it supports ultrasparc + v8plus.
|
sl@0
|
26 |
// limits.h contains invalid values for this combination
|
sl@0
|
27 |
# if (defined (__sparc_v9__) || defined (__sparcv9)) && ! defined ( __WORD64 )
|
sl@0
|
28 |
# define __LONG_MAX__ 2147483647L
|
sl@0
|
29 |
# endif
|
sl@0
|
30 |
|
sl@0
|
31 |
# include <config/stl_solaris.h>
|
sl@0
|
32 |
# endif
|
sl@0
|
33 |
|
sl@0
|
34 |
// no thread support on AmigaOS
|
sl@0
|
35 |
#if defined (__amigaos__)
|
sl@0
|
36 |
# define _NOTHREADS
|
sl@0
|
37 |
# define _STLP_NO_THREADS
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
// azov: gcc on lynx have a bug that causes internal
|
sl@0
|
41 |
// compiler errors when compiling STLport with namespaces turned on.
|
sl@0
|
42 |
// When the compiler gets better - comment out _STLP_HAS_NO_NAMESPACES
|
sl@0
|
43 |
# if defined (__Lynx__) && (__GNUC__ < 3)
|
sl@0
|
44 |
# define _STLP_HAS_NO_NAMESPACES 1
|
sl@0
|
45 |
# define _STLP_NO_STATIC_TEMPLATE_DATA 1
|
sl@0
|
46 |
// turn off useless warning about including system headers
|
sl@0
|
47 |
# define __NO_INCLUDE_WARN__ 1
|
sl@0
|
48 |
# endif
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
/* Tru64 Unix, AIX, HP : gcc there by default uses uses native ld and hence cannot auto-instantiate
|
sl@0
|
52 |
static template data. If you are using GNU ld, please say so in stl_user_config.h header */
|
sl@0
|
53 |
# if (__GNUC__ < 3) && ! (_STLP_GCC_USES_GNU_LD) && \
|
sl@0
|
54 |
((defined (__osf__) && defined (__alpha__)) || defined (_AIX) || defined (__hpux) || defined(__amigaos__) )
|
sl@0
|
55 |
# define _STLP_NO_STATIC_TEMPLATE_DATA
|
sl@0
|
56 |
# endif
|
sl@0
|
57 |
|
sl@0
|
58 |
# if defined(__DJGPP)
|
sl@0
|
59 |
# define _STLP_RAND48 1
|
sl@0
|
60 |
# define _NOTHREADS 1
|
sl@0
|
61 |
# undef _PTHREADS
|
sl@0
|
62 |
# define _STLP_LITTLE_ENDIAN
|
sl@0
|
63 |
# endif
|
sl@0
|
64 |
|
sl@0
|
65 |
# if defined(__MINGW32__)
|
sl@0
|
66 |
/* Mingw32, egcs compiler using the Microsoft C runtime */
|
sl@0
|
67 |
# undef _STLP_NO_DRAND48
|
sl@0
|
68 |
# define _STLP_NO_DRAND48
|
sl@0
|
69 |
# ifdef _MT
|
sl@0
|
70 |
# define _REENTRANT
|
sl@0
|
71 |
# endif
|
sl@0
|
72 |
# define _STLP_IMPORT_DECLSPEC __attribute__((dllimport))
|
sl@0
|
73 |
# define _STLP_EXPORT_DECLSPEC __attribute__((dllexport))
|
sl@0
|
74 |
# define _STLP_CLASS_IMPORT_DECLSPEC __attribute__((dllimport))
|
sl@0
|
75 |
# define _STLP_CLASS_EXPORT_DECLSPEC __attribute__((dllexport))
|
sl@0
|
76 |
# define _STLP_CALL
|
sl@0
|
77 |
|
sl@0
|
78 |
# if defined (_STLP_USE_DYNAMIC_LIB)
|
sl@0
|
79 |
# define _STLP_USE_DECLSPEC 1
|
sl@0
|
80 |
// # define _STLP_USE_TEMPLATE_EXPORT 1
|
sl@0
|
81 |
/* Using dynamic library in MinGW requires _STLP_NO_CUSTOM_IO */
|
sl@0
|
82 |
# define _STLP_NO_CUSTOM_IO
|
sl@0
|
83 |
# endif
|
sl@0
|
84 |
|
sl@0
|
85 |
# endif
|
sl@0
|
86 |
|
sl@0
|
87 |
#if defined (__CYGWIN__) || defined (__MINGW32__) || !(defined (_STLP_USE_GLIBC) || defined (__sun))
|
sl@0
|
88 |
#ifndef __MINGW32__
|
sl@0
|
89 |
# define _STLP_NO_NATIVE_MBSTATE_T 1
|
sl@0
|
90 |
#endif
|
sl@0
|
91 |
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
|
sl@0
|
92 |
# define _STLP_NO_NATIVE_WIDE_STREAMS 1
|
sl@0
|
93 |
# elif defined(__linux__)
|
sl@0
|
94 |
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
|
sl@0
|
95 |
# define _STLP_NO_NATIVE_WIDE_STREAMS 1
|
sl@0
|
96 |
# elif defined (__sun)
|
sl@0
|
97 |
# define _STLP_WCHAR_BORLAND_EXCLUDE
|
sl@0
|
98 |
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
|
sl@0
|
99 |
#endif
|
sl@0
|
100 |
|
sl@0
|
101 |
/* Mac OS X is a little different with namespaces and cannot instantiate
|
sl@0
|
102 |
* static data members in template classes */
|
sl@0
|
103 |
# if defined (__APPLE__)
|
sl@0
|
104 |
/* Mac OS X is missing a required typedef and standard macro */
|
sl@0
|
105 |
typedef unsigned int wint_t;
|
sl@0
|
106 |
|
sl@0
|
107 |
# define __unix
|
sl@0
|
108 |
|
sl@0
|
109 |
# if (__GNUC__ < 3)
|
sl@0
|
110 |
|
sl@0
|
111 |
/* Mac OS X needs one and only one source file to initialize all static data
|
sl@0
|
112 |
* members in template classes. Only one source file in an executable or
|
sl@0
|
113 |
* library can declare instances for such data members, otherwise duplicate
|
sl@0
|
114 |
* symbols will be generated. */
|
sl@0
|
115 |
|
sl@0
|
116 |
# define _STLP_NO_STATIC_TEMPLATE_DATA
|
sl@0
|
117 |
# define _STLP_STATIC_CONST_INIT_BUG 1
|
sl@0
|
118 |
# define _STLP_STATIC_TEMPLATE_DATA 0
|
sl@0
|
119 |
# define _STLP_WEAK_ATTRIBUTE 1
|
sl@0
|
120 |
/* Workaround for the broken Mac OS X C++ preprocessor which cannot handle
|
sl@0
|
121 |
* parameterized macros in #include statements */
|
sl@0
|
122 |
# define _STLP_NATIVE_HEADER(header) <../g++/##header##>
|
sl@0
|
123 |
# define _STLP_NATIVE_C_HEADER(header) <../include/##header##>
|
sl@0
|
124 |
# define _STLP_NATIVE_CPP_C_HEADER(header) <../g++/##header##>
|
sl@0
|
125 |
# define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../g++/##header##>
|
sl@0
|
126 |
# define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../g++/##header##>
|
sl@0
|
127 |
# endif /* __GNUC__ < 3 */
|
sl@0
|
128 |
|
sl@0
|
129 |
# define _STLP_NO_LONG_DOUBLE
|
sl@0
|
130 |
|
sl@0
|
131 |
/* Mac OS X needs all "::" scope references to be "std::" */
|
sl@0
|
132 |
#define _STLP_USE_NEW_C_HEADERS
|
sl@0
|
133 |
# endif
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
# if defined(__BEOS__) && defined(__INTEL__)
|
sl@0
|
137 |
# define _STLP_NATIVE_HEADER(header) <../stlport/beos/##header##>
|
sl@0
|
138 |
# define _STLP_NATIVE_C_HEADER(header) <../stlport/beos/##header##>
|
sl@0
|
139 |
# define _STLP_NATIVE_CPP_C_HEADER(header) <../stlport/beos/##header##>
|
sl@0
|
140 |
# define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../stlport/beos/##header##>
|
sl@0
|
141 |
# define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../stlport/beos/##header##>
|
sl@0
|
142 |
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
|
sl@0
|
143 |
# define _STLP_NO_NATIVE_WIDE_STREAMS 1
|
sl@0
|
144 |
//# define _NOTHREADS 1
|
sl@0
|
145 |
# ifdef _PTHREADS
|
sl@0
|
146 |
# undef _PTHREADS
|
sl@0
|
147 |
# endif
|
sl@0
|
148 |
# ifdef _STLP_PTHREADS
|
sl@0
|
149 |
# undef _STLP_PTHREADS
|
sl@0
|
150 |
# endif
|
sl@0
|
151 |
# define _STLP_USE_STDIO_IO 1
|
sl@0
|
152 |
# define _STLP_USE_GLIBC 1
|
sl@0
|
153 |
# endif
|
sl@0
|
154 |
|
sl@0
|
155 |
|
sl@0
|
156 |
/* g++ 2.7.x and above */
|
sl@0
|
157 |
# define _STLP_LONG_LONG long long
|
sl@0
|
158 |
|
sl@0
|
159 |
# if (__GNUC__ >= 3)
|
sl@0
|
160 |
# ifndef _STLP_HAS_NO_NEW_C_HEADERS
|
sl@0
|
161 |
# define _STLP_HAS_NATIVE_FLOAT_ABS
|
sl@0
|
162 |
# else
|
sl@0
|
163 |
# ifdef _STLP_USE_GLIBC
|
sl@0
|
164 |
# define _STLP_VENDOR_LONG_DOUBLE_MATH 1 // - ptr: with new c headers no needs
|
sl@0
|
165 |
// # define _STLP_REAL_LOCALE_IMPLEMENTED
|
sl@0
|
166 |
# endif
|
sl@0
|
167 |
# endif
|
sl@0
|
168 |
# endif
|
sl@0
|
169 |
|
sl@0
|
170 |
# if (__GNUC__ < 3)
|
sl@0
|
171 |
# define _STLP_HAS_NO_NEW_C_HEADERS 1
|
sl@0
|
172 |
# define _STLP_VENDOR_GLOBAL_CSTD 1
|
sl@0
|
173 |
# define _STLP_HAS_NO_NEW_IOSTREAMS 1
|
sl@0
|
174 |
# ifndef __HONOR_STD
|
sl@0
|
175 |
# define _STLP_VENDOR_GLOBAL_EXCEPT_STD 1
|
sl@0
|
176 |
# endif
|
sl@0
|
177 |
# endif
|
sl@0
|
178 |
|
sl@0
|
179 |
# if (__GNUC_MINOR__ < 95) && (__GNUC__ < 3)
|
sl@0
|
180 |
/* egcs fails to initialize builtin types in expr. like this : new(p) char(); */
|
sl@0
|
181 |
# define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
|
sl@0
|
182 |
# define _STLP_INCOMPLETE_EXCEPTION_HEADER
|
sl@0
|
183 |
# endif
|
sl@0
|
184 |
|
sl@0
|
185 |
# if (__GNUC_MINOR__ < 9) && (__GNUC__ < 3) /* gcc 2.8 */
|
sl@0
|
186 |
# define _STLP_NO_TEMPLATE_CONVERSIONS
|
sl@0
|
187 |
# define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
|
sl@0
|
188 |
# define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
|
sl@0
|
189 |
# define _STLP_NO_FRIEND_TEMPLATES 1
|
sl@0
|
190 |
# define _STLP_HAS_NO_NAMESPACES 1
|
sl@0
|
191 |
# define _STLP_NO_METHOD_SPECIALIZATION 1
|
sl@0
|
192 |
# define _STLP_NO_MEMBER_TEMPLATES 1
|
sl@0
|
193 |
# define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
|
sl@0
|
194 |
# define _STLP_DONT_SIMULATE_PARTIAL_SPEC_FOR_TYPE_TRAITS
|
sl@0
|
195 |
/* DJGPP doesn't seem to implement it in 2.8.x */
|
sl@0
|
196 |
# ifdef DJGPP
|
sl@0
|
197 |
# define _STLP_NO_STATIC_TEMPLATE_DATA 1
|
sl@0
|
198 |
# endif
|
sl@0
|
199 |
# endif
|
sl@0
|
200 |
|
sl@0
|
201 |
# if __GNUC__ <= 2 && __GNUC_MINOR__ <= 7 && ! defined (__CYGWIN32__)
|
sl@0
|
202 |
/* Will it work with 2.6 ? I doubt it. */
|
sl@0
|
203 |
# if ( __GNUC_MINOR__ < 6 )
|
sl@0
|
204 |
__GIVE_UP_WITH_STL(GCC_272);
|
sl@0
|
205 |
# endif
|
sl@0
|
206 |
|
sl@0
|
207 |
# define _STLP_NO_RELOPS_NAMESPACE
|
sl@0
|
208 |
# define _STLP_NON_TYPE_TMPL_PARAM_BUG
|
sl@0
|
209 |
# define _STLP_LIMITED_DEFAULT_TEMPLATES 1
|
sl@0
|
210 |
# define _STLP_DEFAULT_TYPE_PARAM 1
|
sl@0
|
211 |
# define _STLP_NO_BAD_ALLOC
|
sl@0
|
212 |
# define _STLP_NO_ARROW_OPERATOR 1
|
sl@0
|
213 |
# ifndef _STLP_NO_STATIC_TEMPLATE_DATA
|
sl@0
|
214 |
# define _STLP_NO_STATIC_TEMPLATE_DATA
|
sl@0
|
215 |
# endif
|
sl@0
|
216 |
# define _STLP_STATIC_CONST_INIT_BUG 1
|
sl@0
|
217 |
# define _STLP_NO_METHOD_SPECIALIZATION 1
|
sl@0
|
218 |
|
sl@0
|
219 |
# if !defined (__CYGWIN32__)
|
sl@0
|
220 |
# define _STLP_NESTED_TYPE_PARAM_BUG 1
|
sl@0
|
221 |
# define _STLP_BASE_MATCH_BUG 1
|
sl@0
|
222 |
/* unused operators are required (forward) */
|
sl@0
|
223 |
# define _STLP_CONST_CONSTRUCTOR_BUG
|
sl@0
|
224 |
# define _STLP_NO_DEFAULT_NON_TYPE_PARAM
|
sl@0
|
225 |
# endif
|
sl@0
|
226 |
# define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
|
sl@0
|
227 |
# define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1
|
sl@0
|
228 |
# define _STLP_NO_EXCEPTION_HEADER 1
|
sl@0
|
229 |
# else /* ! <= 2.7.* */
|
sl@0
|
230 |
# endif /* ! <= 2.7.* */
|
sl@0
|
231 |
|
sl@0
|
232 |
/* static template data members workaround strategy for gcc tries
|
sl@0
|
233 |
* to use weak symbols.
|
sl@0
|
234 |
* if you don't want to use that, #define _STLP_WEAK_ATTRIBUTE=0 ( you'll
|
sl@0
|
235 |
* have to put "#define __PUT_STATIC_DATA_MEMBERS_HERE" line in one of your
|
sl@0
|
236 |
* compilation unit ( or CFLAGS for it ) _before_ including any STL header ).
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
# if defined (_STLP_NO_STATIC_TEMPLATE_DATA) && ! defined (_STLP_WEAK_ATTRIBUTE )
|
sl@0
|
239 |
/* systems using GNU ld or format that supports weak symbols
|
sl@0
|
240 |
may use "weak" attribute
|
sl@0
|
241 |
Linux & Solaris ( x86 & SPARC ) are being auto-recognized here */
|
sl@0
|
242 |
# if defined(_STLP_GNU_LD) || defined(__ELF__) || defined (__CYGWIN__) || \
|
sl@0
|
243 |
(( defined (__SVR4) || defined ( __svr4__ )) && \
|
sl@0
|
244 |
( defined (sun) || defined ( __sun__ )))
|
sl@0
|
245 |
# define _STLP_WEAK_ATTRIBUTE 1
|
sl@0
|
246 |
# endif
|
sl@0
|
247 |
# endif /* _STLP_WEAK_ATTRIBUTE */
|
sl@0
|
248 |
|
sl@0
|
249 |
|
sl@0
|
250 |
/* strict ANSI prohibits "long long" ( gcc) */
|
sl@0
|
251 |
# if defined ( __STRICT_ANSI__ )
|
sl@0
|
252 |
# undef _STLP_LONG_LONG
|
sl@0
|
253 |
// # define _STLP_STRICT_ANSI 1
|
sl@0
|
254 |
# endif
|
sl@0
|
255 |
|
sl@0
|
256 |
//# if !defined (__STRICT_ANSI__) || defined (__BUILDING_STLPORT)
|
sl@0
|
257 |
//# define _STLP_USE_TEMPLATE_EXPORT
|
sl@0
|
258 |
//# define _STLP_EXPORT_TEMPLATE_KEYWORD extern
|
sl@0
|
259 |
//# define _STLP_IMPORT_TEMPLATE_KEYWORD extern
|
sl@0
|
260 |
//# endif
|
sl@0
|
261 |
|
sl@0
|
262 |
# ifndef __EXCEPTIONS
|
sl@0
|
263 |
# undef _STLP_HAS_NO_EXCEPTIONS
|
sl@0
|
264 |
# define _STLP_HAS_NO_EXCEPTIONS 1
|
sl@0
|
265 |
# endif
|
sl@0
|
266 |
|
sl@0
|
267 |
# if (__GNUC__ >= 3)
|
sl@0
|
268 |
|
sl@0
|
269 |
# if ((__GNUC_MINOR__ == 0) || (__APPLE__))
|
sl@0
|
270 |
# define _STLP_NATIVE_INCLUDE_PATH ../g++-v3
|
sl@0
|
271 |
# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../g++-v3/backward
|
sl@0
|
272 |
# else
|
sl@0
|
273 |
# if defined(__GNUC_PATCHLEVEL__) && (__GNUC_PATCHLEVEL__ > 0)
|
sl@0
|
274 |
# define _STLP_NATIVE_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__
|
sl@0
|
275 |
# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__/backward
|
sl@0
|
276 |
# else
|
sl@0
|
277 |
# define _STLP_NATIVE_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__
|
sl@0
|
278 |
# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__/backward
|
sl@0
|
279 |
# endif
|
sl@0
|
280 |
# endif
|
sl@0
|
281 |
|
sl@0
|
282 |
# elif (__GNUC_MINOR__ < 8)
|
sl@0
|
283 |
|
sl@0
|
284 |
# define _STLP_NO_OWN_IOSTREAMS 1
|
sl@0
|
285 |
# undef _STLP_OWN_IOSTREAMS
|
sl@0
|
286 |
# define _STLP_NATIVE_INCLUDE_PATH ../g++-include
|
sl@0
|
287 |
|
sl@0
|
288 |
/* tuning of static template data members workaround */
|
sl@0
|
289 |
# if ( _STLP_STATIC_TEMPLATE_DATA < 1 )
|
sl@0
|
290 |
# if ( _STLP_WEAK_ATTRIBUTE > 0 )
|
sl@0
|
291 |
# define _STLP_WEAK __attribute__ (( weak ))
|
sl@0
|
292 |
# else
|
sl@0
|
293 |
# define _STLP_WEAK
|
sl@0
|
294 |
# endif /* _STLP_WEAK_ATTRIBUTE */
|
sl@0
|
295 |
|
sl@0
|
296 |
# ifdef __PUT_STATIC_DATA_MEMBERS_HERE
|
sl@0
|
297 |
# define __DECLARE_INSTANCE(type,item,init) type item _STLP_WEAK init
|
sl@0
|
298 |
# else
|
sl@0
|
299 |
# define __DECLARE_INSTANCE(type,item,init)
|
sl@0
|
300 |
# endif /* __PUT_STATIC_DATA_MEMBERS_HERE */
|
sl@0
|
301 |
# endif /* _STLP_STATIC_TEMPLATE_DATA */
|
sl@0
|
302 |
|
sl@0
|
303 |
# else
|
sl@0
|
304 |
|
sl@0
|
305 |
// gcc-2.95.0 used to use "g++-3" directory which has been changed to "g++" in
|
sl@0
|
306 |
// system-dependent "include" for 2.95.2 except for Cygwin and Mingw packages.
|
sl@0
|
307 |
// I expect "g++-3" not being used in later releases.
|
sl@0
|
308 |
// If your installation use "g++-3" include directory for any reason (pre-2.95.2 or Win binary kit),
|
sl@0
|
309 |
// please change the macro below to point to your directory.
|
sl@0
|
310 |
|
sl@0
|
311 |
# if defined(__DJGPP)
|
sl@0
|
312 |
# define _STLP_NATIVE_INCLUDE_PATH ../lang/cxx
|
sl@0
|
313 |
# elif defined (__SYMBIAN32__)
|
sl@0
|
314 |
|
sl@0
|
315 |
# ifdef _PTHREADS
|
sl@0
|
316 |
# undef _PTHREADS
|
sl@0
|
317 |
# endif
|
sl@0
|
318 |
# ifdef _STLP_PTHREADS
|
sl@0
|
319 |
# undef _STLP_PTHREADS
|
sl@0
|
320 |
# endif
|
sl@0
|
321 |
# ifdef _STLP_THREADS
|
sl@0
|
322 |
# undef _STLP_THREADS
|
sl@0
|
323 |
# endif
|
sl@0
|
324 |
|
sl@0
|
325 |
# define _STLP_NATIVE_INCLUDE_PATH ../include
|
sl@0
|
326 |
# define _STLP_NATIVE_C_INCLUDE_PATH libc
|
sl@0
|
327 |
|
sl@0
|
328 |
# define _STLP_NO_NEW_HEADER
|
sl@0
|
329 |
# define _STLP_NO_THREADS
|
sl@0
|
330 |
|
sl@0
|
331 |
# define _STLP_NO_EXCEPTIONS
|
sl@0
|
332 |
# define _STLP_USE_TRAP_LEAVE
|
sl@0
|
333 |
//# define _STLP_IMPLICIT_STRING_TO_DESC
|
sl@0
|
334 |
|
sl@0
|
335 |
# define _STLP_NO_EXCEPTION_HEADER
|
sl@0
|
336 |
// # define _STLP_NO_WCHAR_T
|
sl@0
|
337 |
# define _STLP_NO_IOSTREAMS
|
sl@0
|
338 |
# define _STLP_NO_OWN_IOSTREAMS
|
sl@0
|
339 |
# undef _STLP_OWN_IOSTREAMS
|
sl@0
|
340 |
# define _NOTHREADS
|
sl@0
|
341 |
# define _STLP_USE_NEWALLOC
|
sl@0
|
342 |
# define _STLP_NO_NODE_ALLOC
|
sl@0
|
343 |
# define _STLP_NO_LONG_DOUBLE
|
sl@0
|
344 |
#ifdef __SYMBIAN32__
|
sl@0
|
345 |
# define _STLP_LITTLE_ENDIAN
|
sl@0
|
346 |
#else
|
sl@0
|
347 |
# define _STLP_BIG_ENDIAN
|
sl@0
|
348 |
#endif//__SYMBIAN32__
|
sl@0
|
349 |
// this one causes recursive abs() calls
|
sl@0
|
350 |
# define _STLP_LABS
|
sl@0
|
351 |
# define _STLP_LDIV
|
sl@0
|
352 |
# define _STLP_CONST_CONSTRUCTOR_BUG
|
sl@0
|
353 |
|
sl@0
|
354 |
// # define _STLP_HAS_NAMESPACES
|
sl@0
|
355 |
|
sl@0
|
356 |
# elif (__GNUC__ >= 3) || (__GNUC_MINOR__ >= 97)
|
sl@0
|
357 |
# define _STLP_NATIVE_INCLUDE_PATH ../include/g++-v3
|
sl@0
|
358 |
# elif ((__GNUC_MINOR__ >= 95 && __GNUC_MINOR__ < 97) && !( defined (__FreeBSD__) || defined (__NetBSD__) || defined(__sgi) || defined (__OS2__) ) )
|
sl@0
|
359 |
# define _STLP_NATIVE_INCLUDE_PATH ../g++-3
|
sl@0
|
360 |
# elif (__GNUC_MINOR__ > 8) && (__GNUC_MINOR__ < 95) && (__GNUC__ < 3) && !defined( __Lynx__ )
|
sl@0
|
361 |
// this really sucks, as GNUpro does not really identifies itself, so we have to guess
|
sl@0
|
362 |
// depending on a platform
|
sl@0
|
363 |
# ifdef __hpux
|
sl@0
|
364 |
# define _STLP_NATIVE_INCLUDE_PATH ../g++-3
|
sl@0
|
365 |
# else
|
sl@0
|
366 |
# define _STLP_NATIVE_INCLUDE_PATH ../g++-2
|
sl@0
|
367 |
# endif
|
sl@0
|
368 |
# else
|
sl@0
|
369 |
# define _STLP_NATIVE_INCLUDE_PATH g++
|
sl@0
|
370 |
# endif
|
sl@0
|
371 |
|
sl@0
|
372 |
// <exception> et al
|
sl@0
|
373 |
# ifdef __FreeBSD__
|
sl@0
|
374 |
# if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ > 95)
|
sl@0
|
375 |
# define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../include
|
sl@0
|
376 |
# endif
|
sl@0
|
377 |
# else
|
sl@0
|
378 |
// azov
|
sl@0
|
379 |
# ifdef __Lynx__
|
sl@0
|
380 |
# define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH
|
sl@0
|
381 |
# else
|
sl@0
|
382 |
# if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)
|
sl@0
|
383 |
// # define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../g++-v3
|
sl@0
|
384 |
# else
|
sl@0
|
385 |
# define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../include
|
sl@0
|
386 |
# endif
|
sl@0
|
387 |
# endif
|
sl@0
|
388 |
# endif
|
sl@0
|
389 |
|
sl@0
|
390 |
#endif /* GNUC_MINOR < 8 */
|
sl@0
|
391 |
|
sl@0
|
392 |
#ifndef __SYMBIAN32__
|
sl@0
|
393 |
# define _STLP_NATIVE_CPP_C_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH
|
sl@0
|
394 |
# define _STLP_NATIVE_C_INCLUDE_PATH ../include
|
sl@0
|
395 |
#endif
|
sl@0
|
396 |
|
sl@0
|
397 |
|
sl@0
|
398 |
#ifdef _SCO_ELF
|
sl@0
|
399 |
# define _STLP_SCO_OPENSERVER
|
sl@0
|
400 |
# if defined(_REENTRANT)
|
sl@0
|
401 |
# define _UITHREADS /* if UnixWare < 7.0.1 */
|
sl@0
|
402 |
# define _STLP_UITHREADS
|
sl@0
|
403 |
# endif /* _REENTRANT */
|
sl@0
|
404 |
#endif
|
sl@0
|
405 |
|
sl@0
|
406 |
// Tune settings for the case where static template data members are not
|
sl@0
|
407 |
// instaniated by default
|
sl@0
|
408 |
# if defined ( _STLP_NO_STATIC_TEMPLATE_DATA )
|
sl@0
|
409 |
# define _STLP_STATIC_TEMPLATE_DATA 0
|
sl@0
|
410 |
# if !defined ( _STLP_WEAK_ATTRIBUTE )
|
sl@0
|
411 |
# define _STLP_WEAK_ATTRIBUTE 0
|
sl@0
|
412 |
# endif
|
sl@0
|
413 |
# ifdef __PUT_STATIC_DATA_MEMBERS_HERE
|
sl@0
|
414 |
# define __DECLARE_INSTANCE(type,item,init) type item init
|
sl@0
|
415 |
# else
|
sl@0
|
416 |
# define __DECLARE_INSTANCE(type,item,init)
|
sl@0
|
417 |
# endif
|
sl@0
|
418 |
# else
|
sl@0
|
419 |
# define _STLP_STATIC_TEMPLATE_DATA 1
|
sl@0
|
420 |
# endif
|
sl@0
|
421 |
|
sl@0
|
422 |
|
sl@0
|
423 |
|
sl@0
|
424 |
|