GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / include / c++ / 4.5.3 / arm-brcm-linux-uclibcgnueabi / bits / c++config.h
blobfa4832d9b747823b553bdcbe1dde9a2fcf7d5f7e
1 // Predefined symbols and macros -*- C++ -*-
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
26 /** @file c++config.h
27 * This is an internal header file, included by other library headers.
28 * You should not attempt to use it directly.
31 #ifndef _GLIBCXX_CXX_CONFIG_H
32 #define _GLIBCXX_CXX_CONFIG_H 1
34 // The current version of the C++ library in compressed ISO date format.
35 #define __GLIBCXX__ 20110428
37 // Macros for visibility.
38 // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
39 // _GLIBCXX_VISIBILITY_ATTR
40 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
42 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
43 # define _GLIBCXX_VISIBILITY_ATTR(V) __attribute__ ((__visibility__ (#V)))
44 #else
45 // If this is not supplied by the OS-specific or CPU-specific
46 // headers included below, it will be defined to an empty default.
47 # define _GLIBCXX_VISIBILITY_ATTR(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
48 #endif
50 // Macros for deprecated.
51 // _GLIBCXX_DEPRECATED
52 // _GLIBCXX_DEPRECATED_ATTR
53 #ifndef _GLIBCXX_DEPRECATED
54 # define _GLIBCXX_DEPRECATED 1
55 #endif
57 #if defined(__DEPRECATED) && defined(__GXX_EXPERIMENTAL_CXX0X__)
58 # define _GLIBCXX_DEPRECATED_ATTR __attribute__ ((__deprecated__))
59 #else
60 # define _GLIBCXX_DEPRECATED_ATTR
61 #endif
63 // Macros for activating various namespace association modes.
64 // _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
65 // _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
66 // _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
68 // Guide to libstdc++ namespaces.
70 namespace std
72 namespace __debug { }
73 namespace __parallel { }
74 namespace __norm { } // __normative, __shadow, __replaced
75 namespace __cxx1998 { }
77 namespace tr1 { }
80 #if __cplusplus
82 #ifdef _GLIBCXX_DEBUG
83 # define _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 1
84 #endif
86 #ifdef _GLIBCXX_PARALLEL
87 # define _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL 1
88 #endif
90 // Namespace association for profile
91 #ifdef _GLIBCXX_PROFILE
92 # define _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE 1
93 #endif
95 # define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION 0
97 // Defined if any namespace association modes are active.
98 #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG \
99 || _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL \
100 || _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE \
101 || _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
102 # define _GLIBCXX_USE_NAMESPACE_ASSOCIATION 1
103 #endif
105 // Macros for namespace scope. Either namespace std:: or the name
106 // of some nested namespace within it.
107 // _GLIBCXX_STD
108 // _GLIBCXX_STD_D
109 // _GLIBCXX_STD_P
111 // Macros for enclosing namespaces and possibly nested namespaces.
112 // _GLIBCXX_BEGIN_NAMESPACE
113 // _GLIBCXX_END_NAMESPACE
114 // _GLIBCXX_BEGIN_NESTED_NAMESPACE
115 // _GLIBCXX_END_NESTED_NAMESPACE
116 #ifndef _GLIBCXX_USE_NAMESPACE_ASSOCIATION
117 # define _GLIBCXX_STD_D _GLIBCXX_STD
118 # define _GLIBCXX_STD_P _GLIBCXX_STD
119 # define _GLIBCXX_STD_PR _GLIBCXX_STD
120 # define _GLIBCXX_STD std
121 # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) _GLIBCXX_BEGIN_NAMESPACE(X)
122 # define _GLIBCXX_END_NESTED_NAMESPACE _GLIBCXX_END_NAMESPACE
123 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
124 # define _GLIBCXX_END_NAMESPACE }
125 #else
127 # if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION // && not anything else
128 # define _GLIBCXX_STD_D _GLIBCXX_STD
129 # define _GLIBCXX_STD_P _GLIBCXX_STD
130 # define _GLIBCXX_STD _6
131 # define _GLIBCXX_BEGIN_NAMESPACE(X) _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, _6)
132 # define _GLIBCXX_END_NAMESPACE _GLIBCXX_END_NESTED_NAMESPACE
133 # endif
135 // debug
136 # if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
137 # define _GLIBCXX_STD_D __norm
138 # define _GLIBCXX_STD_P _GLIBCXX_STD
139 # define _GLIBCXX_STD __cxx1998
140 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
141 # define _GLIBCXX_END_NAMESPACE }
142 # define _GLIBCXX_EXTERN_TEMPLATE -1
143 # endif
145 // parallel
146 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && !_GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
147 # define _GLIBCXX_STD_D _GLIBCXX_STD
148 # define _GLIBCXX_STD_P __norm
149 # define _GLIBCXX_STD __cxx1998
150 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
151 # define _GLIBCXX_END_NAMESPACE }
152 # endif
154 // debug + parallel
155 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
156 # define _GLIBCXX_STD_D __norm
157 # define _GLIBCXX_STD_P __norm
158 # define _GLIBCXX_STD __cxx1998
159 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
160 # define _GLIBCXX_END_NAMESPACE }
161 # define _GLIBCXX_EXTERN_TEMPLATE -1
162 # endif
164 // profile
165 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
166 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL || _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
167 # error Cannot use -D_GLIBCXX_PROFILE with -D_GLIBCXX_DEBUG or \
168 -D_GLIBCXX_PARALLEL
169 # endif
170 # define _GLIBCXX_STD_D __norm
171 # define _GLIBCXX_STD_P _GLIBCXX_STD
172 # define _GLIBCXX_STD_PR __norm
173 # define _GLIBCXX_STD __cxx1998
174 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
175 # define _GLIBCXX_END_NAMESPACE }
176 # endif
178 # if __NO_INLINE__ && !__GXX_WEAK__
179 # warning currently using namespace associated mode which may fail \
180 without inlining due to lack of weak symbols
181 # endif
183 # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) namespace X { namespace Y _GLIBCXX_VISIBILITY_ATTR(default) {
184 # define _GLIBCXX_END_NESTED_NAMESPACE } }
185 #endif
187 // Namespace associations for debug mode.
188 #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
189 namespace std
191 namespace __norm { }
192 inline namespace __debug { }
193 inline namespace __cxx1998 { }
195 #endif
197 // Namespace associations for parallel mode.
198 #if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
199 namespace std
201 namespace __norm { }
202 inline namespace __parallel { }
203 inline namespace __cxx1998 { }
205 #endif
207 // Namespace associations for profile mode
208 #if _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
209 namespace std
211 namespace __norm { }
212 inline namespace __profile { }
213 inline namespace __cxx1998 { }
215 #endif
217 // Namespace associations for versioning mode.
218 #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
219 namespace std
221 inline namespace _6 { }
224 namespace __gnu_cxx
226 inline namespace _6 { }
229 namespace std
231 namespace tr1
233 inline namespace _6 { }
236 #endif
238 // XXX GLIBCXX_ABI Deprecated
239 // Define if compatibility should be provided for -mlong-double-64
240 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
242 // Namespace associations for long double 128 mode.
243 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
244 namespace std
246 inline namespace __gnu_cxx_ldbl128 { }
248 # define _GLIBCXX_LDBL_NAMESPACE __gnu_cxx_ldbl128::
249 # define _GLIBCXX_BEGIN_LDBL_NAMESPACE namespace __gnu_cxx_ldbl128 {
250 # define _GLIBCXX_END_LDBL_NAMESPACE }
251 #else
252 # define _GLIBCXX_LDBL_NAMESPACE
253 # define _GLIBCXX_BEGIN_LDBL_NAMESPACE
254 # define _GLIBCXX_END_LDBL_NAMESPACE
255 #endif
258 // Defines for C compatibility. In particular, define extern "C"
259 // linkage only when using C++.
260 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
261 # define _GLIBCXX_END_EXTERN_C }
263 #else // !__cplusplus
264 # undef _GLIBCXX_BEGIN_NAMESPACE
265 # undef _GLIBCXX_END_NAMESPACE
266 # define _GLIBCXX_BEGIN_NAMESPACE(X)
267 # define _GLIBCXX_END_NAMESPACE
268 # define _GLIBCXX_BEGIN_EXTERN_C
269 # define _GLIBCXX_END_EXTERN_C
270 #endif
272 // First includes.
274 // Pick up any OS-specific definitions.
275 #include <bits/os_defines.h>
277 // Pick up any CPU-specific definitions.
278 #include <bits/cpu_defines.h>
280 // If platform uses neither visibility nor psuedo-visibility,
281 // specify empty default for namespace annotation macros.
282 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
283 #define _GLIBCXX_PSEUDO_VISIBILITY(V)
284 #endif
286 // Allow use of "export template." This is currently not a feature
287 // that g++ supports.
288 // #define _GLIBCXX_EXPORT_TEMPLATE 1
290 // Allow use of the GNU syntax extension, "extern template." This
291 // extension is fully documented in the g++ manual, but in a nutshell,
292 // it inhibits all implicit instantiations and is used throughout the
293 // library to avoid multiple weak definitions for required types that
294 // are already explicitly instantiated in the library binary. This
295 // substantially reduces the binary size of resulting executables.
297 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
298 // templates only in basic_string, thus activating its debug-mode
299 // checks even at -O0.
300 #ifndef _GLIBCXX_EXTERN_TEMPLATE
301 # define _GLIBCXX_EXTERN_TEMPLATE 1
302 #endif
304 // Certain function definitions that are meant to be overridable from
305 // user code are decorated with this macro. For some targets, this
306 // macro causes these definitions to be weak.
307 #ifndef _GLIBCXX_WEAK_DEFINITION
308 # define _GLIBCXX_WEAK_DEFINITION
309 #endif
311 // Assert.
312 // Avoid the use of assert, because we're trying to keep the <cassert>
313 // include out of the mix.
314 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
315 #define __glibcxx_assert(_Condition)
316 #else
317 _GLIBCXX_BEGIN_NAMESPACE(std)
318 // Avoid the use of assert, because we're trying to keep the <cassert>
319 // include out of the mix.
320 inline void
321 __replacement_assert(const char* __file, int __line,
322 const char* __function, const char* __condition)
324 __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
325 __function, __condition);
326 __builtin_abort();
328 _GLIBCXX_END_NAMESPACE
330 #define __glibcxx_assert(_Condition) \
331 do \
333 if (! (_Condition)) \
334 std::__replacement_assert(__FILE__, __LINE__, \
335 __PRETTY_FUNCTION__, #_Condition); \
336 } while (false)
337 #endif
339 // The remainder of the prewritten config is automatic; all the
340 // user hooks are listed above.
342 // Create a boolean flag to be used to determine if --fast-math is set.
343 #ifdef __FAST_MATH__
344 # define _GLIBCXX_FAST_MATH 1
345 #else
346 # define _GLIBCXX_FAST_MATH 0
347 #endif
349 // This marks string literals in header files to be extracted for eventual
350 // translation. It is primarily used for messages in thrown exceptions; see
351 // src/functexcept.cc. We use __N because the more traditional _N is used
352 // for something else under certain OSes (see BADNAMES).
353 #define __N(msgid) (msgid)
355 // For example, <windows.h> is known to #define min and max as macros...
356 #undef min
357 #undef max
359 #ifndef _GLIBCXX_PURE
360 # define _GLIBCXX_PURE __attribute__ ((__pure__))
361 #endif
363 #ifndef _GLIBCXX_CONST
364 # define _GLIBCXX_CONST __attribute__ ((__const__))
365 #endif
367 #ifndef _GLIBCXX_NORETURN
368 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
369 #endif
371 #ifndef _GLIBCXX_NOTHROW
372 # ifdef __cplusplus
373 # define _GLIBCXX_NOTHROW throw()
374 # else
375 # define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
376 # endif
377 #endif
379 // End of prewritten config; the discovered settings follow.
380 /* config.h. Generated from config.h.in by configure. */
381 /* config.h.in. Generated from configure.ac by autoheader. */
383 /* Define to 1 if you have the `acosf' function. */
384 #define _GLIBCXX_HAVE_ACOSF 1
386 /* Define to 1 if you have the `acosl' function. */
387 /* #undef _GLIBCXX_HAVE_ACOSL */
389 /* Define to 1 if you have the `asinf' function. */
390 #define _GLIBCXX_HAVE_ASINF 1
392 /* Define to 1 if you have the `asinl' function. */
393 /* #undef _GLIBCXX_HAVE_ASINL */
395 /* Define to 1 if the target assembler supports .symver directive. */
396 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
398 /* Define to 1 if you have the `atan2f' function. */
399 #define _GLIBCXX_HAVE_ATAN2F 1
401 /* Define to 1 if you have the `atan2l' function. */
402 /* #undef _GLIBCXX_HAVE_ATAN2L */
404 /* Define to 1 if you have the `atanf' function. */
405 #define _GLIBCXX_HAVE_ATANF 1
407 /* Define to 1 if you have the `atanl' function. */
408 /* #undef _GLIBCXX_HAVE_ATANL */
410 /* Define to 1 if the target assembler supports thread-local storage. */
411 /* #undef _GLIBCXX_HAVE_CC_TLS */
413 /* Define to 1 if you have the `ceilf' function. */
414 #define _GLIBCXX_HAVE_CEILF 1
416 /* Define to 1 if you have the `ceill' function. */
417 /* #undef _GLIBCXX_HAVE_CEILL */
419 /* Define to 1 if you have the <complex.h> header file. */
420 #define _GLIBCXX_HAVE_COMPLEX_H 1
422 /* Define to 1 if you have the `cosf' function. */
423 #define _GLIBCXX_HAVE_COSF 1
425 /* Define to 1 if you have the `coshf' function. */
426 #define _GLIBCXX_HAVE_COSHF 1
428 /* Define to 1 if you have the `coshl' function. */
429 /* #undef _GLIBCXX_HAVE_COSHL */
431 /* Define to 1 if you have the `cosl' function. */
432 /* #undef _GLIBCXX_HAVE_COSL */
434 /* Define to 1 if you have the <dlfcn.h> header file. */
435 #define _GLIBCXX_HAVE_DLFCN_H 1
437 /* Define if EBADMSG exists. */
438 #define _GLIBCXX_HAVE_EBADMSG 1
440 /* Define if ECANCELED exists. */
441 #define _GLIBCXX_HAVE_ECANCELED 1
443 /* Define if EIDRM exists. */
444 #define _GLIBCXX_HAVE_EIDRM 1
446 /* Define to 1 if you have the <endian.h> header file. */
447 #define _GLIBCXX_HAVE_ENDIAN_H 1
449 /* Define if ENODATA exists. */
450 #define _GLIBCXX_HAVE_ENODATA 1
452 /* Define if ENOLINK exists. */
453 #define _GLIBCXX_HAVE_ENOLINK 1
455 /* Define if ENOSR exists. */
456 #define _GLIBCXX_HAVE_ENOSR 1
458 /* Define if ENOSTR exists. */
459 #define _GLIBCXX_HAVE_ENOSTR 1
461 /* Define if ENOTRECOVERABLE exists. */
462 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
464 /* Define if ENOTSUP exists. */
465 #define _GLIBCXX_HAVE_ENOTSUP 1
467 /* Define if EOVERFLOW exists. */
468 #define _GLIBCXX_HAVE_EOVERFLOW 1
470 /* Define if EOWNERDEAD exists. */
471 #define _GLIBCXX_HAVE_EOWNERDEAD 1
473 /* Define if EPROTO exists. */
474 #define _GLIBCXX_HAVE_EPROTO 1
476 /* Define if ETIME exists. */
477 #define _GLIBCXX_HAVE_ETIME 1
479 /* Define if ETXTBSY exists. */
480 #define _GLIBCXX_HAVE_ETXTBSY 1
482 /* Define to 1 if you have the <execinfo.h> header file. */
483 /* #undef _GLIBCXX_HAVE_EXECINFO_H */
485 /* Define to 1 if you have the `expf' function. */
486 #define _GLIBCXX_HAVE_EXPF 1
488 /* Define to 1 if you have the `expl' function. */
489 /* #undef _GLIBCXX_HAVE_EXPL */
491 /* Define to 1 if you have the `fabsf' function. */
492 #define _GLIBCXX_HAVE_FABSF 1
494 /* Define to 1 if you have the `fabsl' function. */
495 /* #undef _GLIBCXX_HAVE_FABSL */
497 /* Define to 1 if you have the <fenv.h> header file. */
498 /* #undef _GLIBCXX_HAVE_FENV_H */
500 /* Define to 1 if you have the `finite' function. */
501 /* #undef _GLIBCXX_HAVE_FINITE */
503 /* Define to 1 if you have the `finitef' function. */
504 /* #undef _GLIBCXX_HAVE_FINITEF */
506 /* Define to 1 if you have the `finitel' function. */
507 /* #undef _GLIBCXX_HAVE_FINITEL */
509 /* Define to 1 if you have the <float.h> header file. */
510 #define _GLIBCXX_HAVE_FLOAT_H 1
512 /* Define to 1 if you have the `floorf' function. */
513 #define _GLIBCXX_HAVE_FLOORF 1
515 /* Define to 1 if you have the `floorl' function. */
516 /* #undef _GLIBCXX_HAVE_FLOORL */
518 /* Define to 1 if you have the `fmodf' function. */
519 #define _GLIBCXX_HAVE_FMODF 1
521 /* Define to 1 if you have the `fmodl' function. */
522 /* #undef _GLIBCXX_HAVE_FMODL */
524 /* Define to 1 if you have the `fpclass' function. */
525 /* #undef _GLIBCXX_HAVE_FPCLASS */
527 /* Define to 1 if you have the <fp.h> header file. */
528 /* #undef _GLIBCXX_HAVE_FP_H */
530 /* Define to 1 if you have the `frexpf' function. */
531 #define _GLIBCXX_HAVE_FREXPF 1
533 /* Define to 1 if you have the `frexpl' function. */
534 /* #undef _GLIBCXX_HAVE_FREXPL */
536 /* Define if _Unwind_GetIPInfo is available. */
537 #define _GLIBCXX_HAVE_GETIPINFO 1
539 /* Define if gthr-default.h exists (meaning that threading support is
540 enabled). */
541 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
543 /* Define to 1 if you have the `hypot' function. */
544 #define _GLIBCXX_HAVE_HYPOT 1
546 /* Define to 1 if you have the `hypotf' function. */
547 #define _GLIBCXX_HAVE_HYPOTF 1
549 /* Define to 1 if you have the `hypotl' function. */
550 /* #undef _GLIBCXX_HAVE_HYPOTL */
552 /* Define if you have the iconv() function. */
553 #define _GLIBCXX_HAVE_ICONV 1
555 /* Define to 1 if you have the <ieeefp.h> header file. */
556 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
558 /* Define if int64_t is available in <stdint.h>. */
559 #define _GLIBCXX_HAVE_INT64_T 1
561 /* Define if int64_t is a long. */
562 /* #undef _GLIBCXX_HAVE_INT64_T_LONG */
564 /* Define if int64_t is a long long. */
565 #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1
567 /* Define to 1 if you have the <inttypes.h> header file. */
568 #define _GLIBCXX_HAVE_INTTYPES_H 1
570 /* Define to 1 if you have the `isinf' function. */
571 /* #undef _GLIBCXX_HAVE_ISINF */
573 /* Define to 1 if you have the `isinff' function. */
574 /* #undef _GLIBCXX_HAVE_ISINFF */
576 /* Define to 1 if you have the `isinfl' function. */
577 /* #undef _GLIBCXX_HAVE_ISINFL */
579 /* Define to 1 if you have the `isnan' function. */
580 /* #undef _GLIBCXX_HAVE_ISNAN */
582 /* Define to 1 if you have the `isnanf' function. */
583 /* #undef _GLIBCXX_HAVE_ISNANF */
585 /* Define to 1 if you have the `isnanl' function. */
586 /* #undef _GLIBCXX_HAVE_ISNANL */
588 /* Defined if iswblank exists. */
589 #define _GLIBCXX_HAVE_ISWBLANK 1
591 /* Define if LC_MESSAGES is available in <locale.h>. */
592 #define _GLIBCXX_HAVE_LC_MESSAGES 1
594 /* Define to 1 if you have the `ldexpf' function. */
595 #define _GLIBCXX_HAVE_LDEXPF 1
597 /* Define to 1 if you have the `ldexpl' function. */
598 /* #undef _GLIBCXX_HAVE_LDEXPL */
600 /* Define to 1 if you have the <libintl.h> header file. */
601 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
603 /* Only used in build directory testsuite_hooks.h. */
604 /* #undef _GLIBCXX_HAVE_LIMIT_AS */
606 /* Only used in build directory testsuite_hooks.h. */
607 /* #undef _GLIBCXX_HAVE_LIMIT_DATA */
609 /* Only used in build directory testsuite_hooks.h. */
610 /* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */
612 /* Only used in build directory testsuite_hooks.h. */
613 /* #undef _GLIBCXX_HAVE_LIMIT_RSS */
615 /* Only used in build directory testsuite_hooks.h. */
616 /* #undef _GLIBCXX_HAVE_LIMIT_VMEM */
618 /* Define if futex syscall is available. */
619 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
621 /* Define to 1 if you have the <locale.h> header file. */
622 #define _GLIBCXX_HAVE_LOCALE_H 1
624 /* Define to 1 if you have the `log10f' function. */
625 #define _GLIBCXX_HAVE_LOG10F 1
627 /* Define to 1 if you have the `log10l' function. */
628 /* #undef _GLIBCXX_HAVE_LOG10L */
630 /* Define to 1 if you have the `logf' function. */
631 #define _GLIBCXX_HAVE_LOGF 1
633 /* Define to 1 if you have the `logl' function. */
634 /* #undef _GLIBCXX_HAVE_LOGL */
636 /* Define to 1 if you have the <machine/endian.h> header file. */
637 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
639 /* Define to 1 if you have the <machine/param.h> header file. */
640 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
642 /* Define if mbstate_t exists in wchar.h. */
643 #define _GLIBCXX_HAVE_MBSTATE_T 1
645 /* Define to 1 if you have the <memory.h> header file. */
646 #define _GLIBCXX_HAVE_MEMORY_H 1
648 /* Define to 1 if you have the `modf' function. */
649 #define _GLIBCXX_HAVE_MODF 1
651 /* Define to 1 if you have the `modff' function. */
652 #define _GLIBCXX_HAVE_MODFF 1
654 /* Define to 1 if you have the `modfl' function. */
655 /* #undef _GLIBCXX_HAVE_MODFL */
657 /* Define to 1 if you have the <nan.h> header file. */
658 /* #undef _GLIBCXX_HAVE_NAN_H */
660 /* Define if poll is available in <poll.h>. */
661 #define _GLIBCXX_HAVE_POLL 1
663 /* Define to 1 if you have the `powf' function. */
664 #define _GLIBCXX_HAVE_POWF 1
666 /* Define to 1 if you have the `powl' function. */
667 /* #undef _GLIBCXX_HAVE_POWL */
669 /* Define to 1 if you have the `qfpclass' function. */
670 /* #undef _GLIBCXX_HAVE_QFPCLASS */
672 /* Define to 1 if you have the `setenv' function. */
673 /* #undef _GLIBCXX_HAVE_SETENV */
675 /* Define to 1 if you have the `sincos' function. */
676 /* #undef _GLIBCXX_HAVE_SINCOS */
678 /* Define to 1 if you have the `sincosf' function. */
679 /* #undef _GLIBCXX_HAVE_SINCOSF */
681 /* Define to 1 if you have the `sincosl' function. */
682 /* #undef _GLIBCXX_HAVE_SINCOSL */
684 /* Define to 1 if you have the `sinf' function. */
685 #define _GLIBCXX_HAVE_SINF 1
687 /* Define to 1 if you have the `sinhf' function. */
688 #define _GLIBCXX_HAVE_SINHF 1
690 /* Define to 1 if you have the `sinhl' function. */
691 /* #undef _GLIBCXX_HAVE_SINHL */
693 /* Define to 1 if you have the `sinl' function. */
694 /* #undef _GLIBCXX_HAVE_SINL */
696 /* Define to 1 if you have the `sqrtf' function. */
697 #define _GLIBCXX_HAVE_SQRTF 1
699 /* Define to 1 if you have the `sqrtl' function. */
700 /* #undef _GLIBCXX_HAVE_SQRTL */
702 /* Define to 1 if you have the <stdbool.h> header file. */
703 #define _GLIBCXX_HAVE_STDBOOL_H 1
705 /* Define to 1 if you have the <stdint.h> header file. */
706 #define _GLIBCXX_HAVE_STDINT_H 1
708 /* Define to 1 if you have the <stdlib.h> header file. */
709 #define _GLIBCXX_HAVE_STDLIB_H 1
711 /* Define if strerror_l is available in <string.h>. */
712 /* #undef _GLIBCXX_HAVE_STRERROR_L */
714 /* Define if strerror_r is available in <string.h>. */
715 #define _GLIBCXX_HAVE_STRERROR_R 1
717 /* Define to 1 if you have the <strings.h> header file. */
718 #define _GLIBCXX_HAVE_STRINGS_H 1
720 /* Define to 1 if you have the <string.h> header file. */
721 #define _GLIBCXX_HAVE_STRING_H 1
723 /* Define to 1 if you have the `strtof' function. */
724 #define _GLIBCXX_HAVE_STRTOF 1
726 /* Define to 1 if you have the `strtold' function. */
727 #define _GLIBCXX_HAVE_STRTOLD 1
729 /* Define if strxfrm_l is available in <string.h>. */
730 #define _GLIBCXX_HAVE_STRXFRM_L 1
732 /* Define to 1 if you have the <sys/filio.h> header file. */
733 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
735 /* Define to 1 if you have the <sys/ioctl.h> header file. */
736 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
738 /* Define to 1 if you have the <sys/ipc.h> header file. */
739 #define _GLIBCXX_HAVE_SYS_IPC_H 1
741 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
742 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
744 /* Define to 1 if you have the <sys/machine.h> header file. */
745 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
747 /* Define to 1 if you have the <sys/param.h> header file. */
748 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
750 /* Define to 1 if you have the <sys/resource.h> header file. */
751 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
753 /* Define to 1 if you have the <sys/sem.h> header file. */
754 #define _GLIBCXX_HAVE_SYS_SEM_H 1
756 /* Define to 1 if you have the <sys/stat.h> header file. */
757 #define _GLIBCXX_HAVE_SYS_STAT_H 1
759 /* Define to 1 if you have the <sys/time.h> header file. */
760 #define _GLIBCXX_HAVE_SYS_TIME_H 1
762 /* Define to 1 if you have the <sys/types.h> header file. */
763 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
765 /* Define to 1 if you have the <sys/uio.h> header file. */
766 #define _GLIBCXX_HAVE_SYS_UIO_H 1
768 /* Define if S_IFREG is available in <sys/stat.h>. */
769 /* #undef _GLIBCXX_HAVE_S_IFREG */
771 /* Define if S_IFREG is available in <sys/stat.h>. */
772 #define _GLIBCXX_HAVE_S_ISREG 1
774 /* Define to 1 if you have the `tanf' function. */
775 #define _GLIBCXX_HAVE_TANF 1
777 /* Define to 1 if you have the `tanhf' function. */
778 #define _GLIBCXX_HAVE_TANHF 1
780 /* Define to 1 if you have the `tanhl' function. */
781 /* #undef _GLIBCXX_HAVE_TANHL */
783 /* Define to 1 if you have the `tanl' function. */
784 /* #undef _GLIBCXX_HAVE_TANL */
786 /* Define to 1 if you have the <tgmath.h> header file. */
787 #define _GLIBCXX_HAVE_TGMATH_H 1
789 /* Define to 1 if the target supports thread-local storage. */
790 /* #undef _GLIBCXX_HAVE_TLS */
792 /* Define to 1 if you have the <unistd.h> header file. */
793 #define _GLIBCXX_HAVE_UNISTD_H 1
795 /* Defined if vfwscanf exists. */
796 #define _GLIBCXX_HAVE_VFWSCANF 1
798 /* Defined if vswscanf exists. */
799 #define _GLIBCXX_HAVE_VSWSCANF 1
801 /* Defined if vwscanf exists. */
802 #define _GLIBCXX_HAVE_VWSCANF 1
804 /* Define to 1 if you have the <wchar.h> header file. */
805 #define _GLIBCXX_HAVE_WCHAR_H 1
807 /* Defined if wcstof exists. */
808 #define _GLIBCXX_HAVE_WCSTOF 1
810 /* Define to 1 if you have the <wctype.h> header file. */
811 #define _GLIBCXX_HAVE_WCTYPE_H 1
813 /* Define if writev is available in <sys/uio.h>. */
814 #define _GLIBCXX_HAVE_WRITEV 1
816 /* Define to 1 if you have the `_acosf' function. */
817 /* #undef _GLIBCXX_HAVE__ACOSF */
819 /* Define to 1 if you have the `_acosl' function. */
820 /* #undef _GLIBCXX_HAVE__ACOSL */
822 /* Define to 1 if you have the `_asinf' function. */
823 /* #undef _GLIBCXX_HAVE__ASINF */
825 /* Define to 1 if you have the `_asinl' function. */
826 /* #undef _GLIBCXX_HAVE__ASINL */
828 /* Define to 1 if you have the `_atan2f' function. */
829 /* #undef _GLIBCXX_HAVE__ATAN2F */
831 /* Define to 1 if you have the `_atan2l' function. */
832 /* #undef _GLIBCXX_HAVE__ATAN2L */
834 /* Define to 1 if you have the `_atanf' function. */
835 /* #undef _GLIBCXX_HAVE__ATANF */
837 /* Define to 1 if you have the `_atanl' function. */
838 /* #undef _GLIBCXX_HAVE__ATANL */
840 /* Define to 1 if you have the `_ceilf' function. */
841 /* #undef _GLIBCXX_HAVE__CEILF */
843 /* Define to 1 if you have the `_ceill' function. */
844 /* #undef _GLIBCXX_HAVE__CEILL */
846 /* Define to 1 if you have the `_cosf' function. */
847 /* #undef _GLIBCXX_HAVE__COSF */
849 /* Define to 1 if you have the `_coshf' function. */
850 /* #undef _GLIBCXX_HAVE__COSHF */
852 /* Define to 1 if you have the `_coshl' function. */
853 /* #undef _GLIBCXX_HAVE__COSHL */
855 /* Define to 1 if you have the `_cosl' function. */
856 /* #undef _GLIBCXX_HAVE__COSL */
858 /* Define to 1 if you have the `_expf' function. */
859 /* #undef _GLIBCXX_HAVE__EXPF */
861 /* Define to 1 if you have the `_expl' function. */
862 /* #undef _GLIBCXX_HAVE__EXPL */
864 /* Define to 1 if you have the `_fabsf' function. */
865 /* #undef _GLIBCXX_HAVE__FABSF */
867 /* Define to 1 if you have the `_fabsl' function. */
868 /* #undef _GLIBCXX_HAVE__FABSL */
870 /* Define to 1 if you have the `_finite' function. */
871 /* #undef _GLIBCXX_HAVE__FINITE */
873 /* Define to 1 if you have the `_finitef' function. */
874 /* #undef _GLIBCXX_HAVE__FINITEF */
876 /* Define to 1 if you have the `_finitel' function. */
877 /* #undef _GLIBCXX_HAVE__FINITEL */
879 /* Define to 1 if you have the `_floorf' function. */
880 /* #undef _GLIBCXX_HAVE__FLOORF */
882 /* Define to 1 if you have the `_floorl' function. */
883 /* #undef _GLIBCXX_HAVE__FLOORL */
885 /* Define to 1 if you have the `_fmodf' function. */
886 /* #undef _GLIBCXX_HAVE__FMODF */
888 /* Define to 1 if you have the `_fmodl' function. */
889 /* #undef _GLIBCXX_HAVE__FMODL */
891 /* Define to 1 if you have the `_fpclass' function. */
892 /* #undef _GLIBCXX_HAVE__FPCLASS */
894 /* Define to 1 if you have the `_frexpf' function. */
895 /* #undef _GLIBCXX_HAVE__FREXPF */
897 /* Define to 1 if you have the `_frexpl' function. */
898 /* #undef _GLIBCXX_HAVE__FREXPL */
900 /* Define to 1 if you have the `_hypot' function. */
901 /* #undef _GLIBCXX_HAVE__HYPOT */
903 /* Define to 1 if you have the `_hypotf' function. */
904 /* #undef _GLIBCXX_HAVE__HYPOTF */
906 /* Define to 1 if you have the `_hypotl' function. */
907 /* #undef _GLIBCXX_HAVE__HYPOTL */
909 /* Define to 1 if you have the `_isinf' function. */
910 /* #undef _GLIBCXX_HAVE__ISINF */
912 /* Define to 1 if you have the `_isinff' function. */
913 /* #undef _GLIBCXX_HAVE__ISINFF */
915 /* Define to 1 if you have the `_isinfl' function. */
916 /* #undef _GLIBCXX_HAVE__ISINFL */
918 /* Define to 1 if you have the `_isnan' function. */
919 /* #undef _GLIBCXX_HAVE__ISNAN */
921 /* Define to 1 if you have the `_isnanf' function. */
922 /* #undef _GLIBCXX_HAVE__ISNANF */
924 /* Define to 1 if you have the `_isnanl' function. */
925 /* #undef _GLIBCXX_HAVE__ISNANL */
927 /* Define to 1 if you have the `_ldexpf' function. */
928 /* #undef _GLIBCXX_HAVE__LDEXPF */
930 /* Define to 1 if you have the `_ldexpl' function. */
931 /* #undef _GLIBCXX_HAVE__LDEXPL */
933 /* Define to 1 if you have the `_log10f' function. */
934 /* #undef _GLIBCXX_HAVE__LOG10F */
936 /* Define to 1 if you have the `_log10l' function. */
937 /* #undef _GLIBCXX_HAVE__LOG10L */
939 /* Define to 1 if you have the `_logf' function. */
940 /* #undef _GLIBCXX_HAVE__LOGF */
942 /* Define to 1 if you have the `_logl' function. */
943 /* #undef _GLIBCXX_HAVE__LOGL */
945 /* Define to 1 if you have the `_modf' function. */
946 /* #undef _GLIBCXX_HAVE__MODF */
948 /* Define to 1 if you have the `_modff' function. */
949 /* #undef _GLIBCXX_HAVE__MODFF */
951 /* Define to 1 if you have the `_modfl' function. */
952 /* #undef _GLIBCXX_HAVE__MODFL */
954 /* Define to 1 if you have the `_powf' function. */
955 /* #undef _GLIBCXX_HAVE__POWF */
957 /* Define to 1 if you have the `_powl' function. */
958 /* #undef _GLIBCXX_HAVE__POWL */
960 /* Define to 1 if you have the `_qfpclass' function. */
961 /* #undef _GLIBCXX_HAVE__QFPCLASS */
963 /* Define to 1 if you have the `_sincos' function. */
964 /* #undef _GLIBCXX_HAVE__SINCOS */
966 /* Define to 1 if you have the `_sincosf' function. */
967 /* #undef _GLIBCXX_HAVE__SINCOSF */
969 /* Define to 1 if you have the `_sincosl' function. */
970 /* #undef _GLIBCXX_HAVE__SINCOSL */
972 /* Define to 1 if you have the `_sinf' function. */
973 /* #undef _GLIBCXX_HAVE__SINF */
975 /* Define to 1 if you have the `_sinhf' function. */
976 /* #undef _GLIBCXX_HAVE__SINHF */
978 /* Define to 1 if you have the `_sinhl' function. */
979 /* #undef _GLIBCXX_HAVE__SINHL */
981 /* Define to 1 if you have the `_sinl' function. */
982 /* #undef _GLIBCXX_HAVE__SINL */
984 /* Define to 1 if you have the `_sqrtf' function. */
985 /* #undef _GLIBCXX_HAVE__SQRTF */
987 /* Define to 1 if you have the `_sqrtl' function. */
988 /* #undef _GLIBCXX_HAVE__SQRTL */
990 /* Define to 1 if you have the `_tanf' function. */
991 /* #undef _GLIBCXX_HAVE__TANF */
993 /* Define to 1 if you have the `_tanhf' function. */
994 /* #undef _GLIBCXX_HAVE__TANHF */
996 /* Define to 1 if you have the `_tanhl' function. */
997 /* #undef _GLIBCXX_HAVE__TANHL */
999 /* Define to 1 if you have the `_tanl' function. */
1000 /* #undef _GLIBCXX_HAVE__TANL */
1002 /* Define as const if the declaration of iconv() needs const. */
1003 #define _GLIBCXX_ICONV_CONST
1005 /* Define to the sub-directory in which libtool stores uninstalled libraries.
1007 #define LT_OBJDIR ".libs/"
1009 /* Name of package */
1010 /* #undef _GLIBCXX_PACKAGE */
1012 /* Define to the address where bug reports for this package should be sent. */
1013 #define _GLIBCXX_PACKAGE_BUGREPORT ""
1015 /* Define to the full name of this package. */
1016 #define _GLIBCXX_PACKAGE_NAME "package-unused"
1018 /* Define to the full name and version of this package. */
1019 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1021 /* Define to the one symbol short name of this package. */
1022 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1024 /* Define to the home page for this package. */
1025 #define _GLIBCXX_PACKAGE_URL ""
1027 /* Define to the version of this package. */
1028 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1030 /* The size of `char', as computed by sizeof. */
1031 /* #undef SIZEOF_CHAR */
1033 /* The size of `int', as computed by sizeof. */
1034 /* #undef SIZEOF_INT */
1036 /* The size of `long', as computed by sizeof. */
1037 /* #undef SIZEOF_LONG */
1039 /* The size of `short', as computed by sizeof. */
1040 /* #undef SIZEOF_SHORT */
1042 /* The size of `void *', as computed by sizeof. */
1043 /* #undef SIZEOF_VOID_P */
1045 /* Define to 1 if you have the ANSI C header files. */
1046 #define STDC_HEADERS 1
1048 /* Version number of package */
1049 /* #undef _GLIBCXX_VERSION */
1051 /* Define if builtin atomic operations for bool are supported on this host. */
1052 #define _GLIBCXX_ATOMIC_BUILTINS_1 1
1054 /* Define if builtin atomic operations for short are supported on this host.
1056 #define _GLIBCXX_ATOMIC_BUILTINS_2 1
1058 /* Define if builtin atomic operations for int are supported on this host. */
1059 #define _GLIBCXX_ATOMIC_BUILTINS_4 1
1061 /* Define if builtin atomic operations for long long are supported on this
1062 host. */
1063 /* #undef _GLIBCXX_ATOMIC_BUILTINS_8 */
1065 /* Define to use concept checking code from the boost libraries. */
1066 /* #undef _GLIBCXX_CONCEPT_CHECKS */
1068 /* Define if a fully dynamic basic_string is wanted. */
1069 /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
1071 /* Define if gthreads library is available. */
1072 #define _GLIBCXX_HAS_GTHREADS 1
1074 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1075 #define _GLIBCXX_HOSTED 1
1077 /* Define if compatibility should be provided for -mlong-double-64. */
1079 /* Define if ptrdiff_t is int. */
1080 #define _GLIBCXX_PTRDIFF_T_IS_INT 1
1082 /* Define if using setrlimit to set resource limits during "make check" */
1083 /* #undef _GLIBCXX_RES_LIMITS */
1085 /* Define if size_t is unsigned int. */
1086 #define _GLIBCXX_SIZE_T_IS_UINT 1
1088 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
1089 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
1091 /* Define if EOF == -1, SEEK_CUR == 1, SEEK_END == 2. */
1092 #define _GLIBCXX_STDIO_MACROS 1
1094 /* Define to use symbol versioning in the shared library. */
1095 #define _GLIBCXX_SYMVER 1
1097 /* Define to use darwin versioning in the shared library. */
1098 /* #undef _GLIBCXX_SYMVER_DARWIN */
1100 /* Define to use GNU versioning in the shared library. */
1101 #define _GLIBCXX_SYMVER_GNU 1
1103 /* Define to use GNU namespace versioning in the shared library. */
1104 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1106 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1107 <stdio.h>, and <stdlib.h> can be used or exposed. */
1108 /* #undef _GLIBCXX_USE_C99 */
1110 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
1111 compiler builtins for these functions requires corresponding C99 library
1112 functions to be present. */
1113 /* #undef _GLIBCXX_USE_C99_COMPLEX */
1115 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1116 Using compiler builtins for these functions requires corresponding C99
1117 library functions to be present. */
1118 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
1120 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1121 namespace std::tr1. */
1122 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
1124 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1125 namespace std::tr1. */
1126 /* #undef _GLIBCXX_USE_C99_FENV_TR1 */
1128 /* Define if C99 functions in <inttypes.h> should be imported in
1129 <tr1/cinttypes> in namespace std::tr1. */
1130 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1132 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1133 <tr1/cinttypes> in namespace std::tr1. */
1134 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1136 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1137 in namespace std. */
1138 #define _GLIBCXX_USE_C99_MATH 1
1140 /* Define if C99 functions or macros in <math.h> should be imported in
1141 <tr1/cmath> in namespace std::tr1. */
1142 /* #undef _GLIBCXX_USE_C99_MATH_TR1 */
1144 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1145 namespace std::tr1. */
1146 #define _GLIBCXX_USE_C99_STDINT_TR1 1
1148 /* Defined if clock_gettime has monotonic clock support. */
1149 /* #undef _GLIBCXX_USE_CLOCK_MONOTONIC */
1151 /* Defined if clock_gettime has realtime clock support. */
1152 /* #undef _GLIBCXX_USE_CLOCK_REALTIME */
1154 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1155 this host. */
1156 /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */
1158 /* Defined if gettimeofday is available. */
1159 #define _GLIBCXX_USE_GETTIMEOFDAY 1
1161 /* Define if LFS support is available. */
1162 #define _GLIBCXX_USE_LFS 1
1164 /* Define if code specialized for long long should be used. */
1165 #define _GLIBCXX_USE_LONG_LONG 1
1167 /* Defined if nanosleep is available. */
1168 /* #undef _GLIBCXX_USE_NANOSLEEP */
1170 /* Define if NLS translations are to be used. */
1171 /* #undef _GLIBCXX_USE_NLS */
1173 /* Define if /dev/random and /dev/urandom are available for the random_device
1174 of TR1 (Chapter 5.1). */
1175 #define _GLIBCXX_USE_RANDOM_TR1 1
1177 /* Defined if sched_yield is available. */
1178 /* #undef _GLIBCXX_USE_SCHED_YIELD */
1180 /* Define if code specialized for wchar_t should be used. */
1181 #define _GLIBCXX_USE_WCHAR_T 1
1183 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1184 # define _GLIBCXX_HAVE_ACOSF 1
1185 # define acosf _acosf
1186 #endif
1188 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1189 # define _GLIBCXX_HAVE_ACOSL 1
1190 # define acosl _acosl
1191 #endif
1193 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1194 # define _GLIBCXX_HAVE_ASINF 1
1195 # define asinf _asinf
1196 #endif
1198 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1199 # define _GLIBCXX_HAVE_ASINL 1
1200 # define asinl _asinl
1201 #endif
1203 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1204 # define _GLIBCXX_HAVE_ATAN2F 1
1205 # define atan2f _atan2f
1206 #endif
1208 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1209 # define _GLIBCXX_HAVE_ATAN2L 1
1210 # define atan2l _atan2l
1211 #endif
1213 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1214 # define _GLIBCXX_HAVE_ATANF 1
1215 # define atanf _atanf
1216 #endif
1218 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1219 # define _GLIBCXX_HAVE_ATANL 1
1220 # define atanl _atanl
1221 #endif
1223 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1224 # define _GLIBCXX_HAVE_CEILF 1
1225 # define ceilf _ceilf
1226 #endif
1228 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1229 # define _GLIBCXX_HAVE_CEILL 1
1230 # define ceill _ceill
1231 #endif
1233 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1234 # define _GLIBCXX_HAVE_COSF 1
1235 # define cosf _cosf
1236 #endif
1238 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1239 # define _GLIBCXX_HAVE_COSHF 1
1240 # define coshf _coshf
1241 #endif
1243 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1244 # define _GLIBCXX_HAVE_COSHL 1
1245 # define coshl _coshl
1246 #endif
1248 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1249 # define _GLIBCXX_HAVE_COSL 1
1250 # define cosl _cosl
1251 #endif
1253 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1254 # define _GLIBCXX_HAVE_EXPF 1
1255 # define expf _expf
1256 #endif
1258 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1259 # define _GLIBCXX_HAVE_EXPL 1
1260 # define expl _expl
1261 #endif
1263 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1264 # define _GLIBCXX_HAVE_FABSF 1
1265 # define fabsf _fabsf
1266 #endif
1268 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1269 # define _GLIBCXX_HAVE_FABSL 1
1270 # define fabsl _fabsl
1271 #endif
1273 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1274 # define _GLIBCXX_HAVE_FINITE 1
1275 # define finite _finite
1276 #endif
1278 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1279 # define _GLIBCXX_HAVE_FINITEF 1
1280 # define finitef _finitef
1281 #endif
1283 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1284 # define _GLIBCXX_HAVE_FINITEL 1
1285 # define finitel _finitel
1286 #endif
1288 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1289 # define _GLIBCXX_HAVE_FLOORF 1
1290 # define floorf _floorf
1291 #endif
1293 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1294 # define _GLIBCXX_HAVE_FLOORL 1
1295 # define floorl _floorl
1296 #endif
1298 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1299 # define _GLIBCXX_HAVE_FMODF 1
1300 # define fmodf _fmodf
1301 #endif
1303 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1304 # define _GLIBCXX_HAVE_FMODL 1
1305 # define fmodl _fmodl
1306 #endif
1308 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1309 # define _GLIBCXX_HAVE_FPCLASS 1
1310 # define fpclass _fpclass
1311 #endif
1313 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1314 # define _GLIBCXX_HAVE_FREXPF 1
1315 # define frexpf _frexpf
1316 #endif
1318 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1319 # define _GLIBCXX_HAVE_FREXPL 1
1320 # define frexpl _frexpl
1321 #endif
1323 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
1324 # define _GLIBCXX_HAVE_HYPOT 1
1325 # define hypot _hypot
1326 #endif
1328 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
1329 # define _GLIBCXX_HAVE_HYPOTF 1
1330 # define hypotf _hypotf
1331 #endif
1333 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
1334 # define _GLIBCXX_HAVE_HYPOTL 1
1335 # define hypotl _hypotl
1336 #endif
1338 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1339 # define _GLIBCXX_HAVE_ISINF 1
1340 # define isinf _isinf
1341 #endif
1343 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1344 # define _GLIBCXX_HAVE_ISINFF 1
1345 # define isinff _isinff
1346 #endif
1348 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1349 # define _GLIBCXX_HAVE_ISINFL 1
1350 # define isinfl _isinfl
1351 #endif
1353 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
1354 # define _GLIBCXX_HAVE_ISNAN 1
1355 # define isnan _isnan
1356 #endif
1358 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1359 # define _GLIBCXX_HAVE_ISNANF 1
1360 # define isnanf _isnanf
1361 #endif
1363 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1364 # define _GLIBCXX_HAVE_ISNANL 1
1365 # define isnanl _isnanl
1366 #endif
1368 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1369 # define _GLIBCXX_HAVE_LDEXPF 1
1370 # define ldexpf _ldexpf
1371 #endif
1373 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1374 # define _GLIBCXX_HAVE_LDEXPL 1
1375 # define ldexpl _ldexpl
1376 #endif
1378 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1379 # define _GLIBCXX_HAVE_LOG10F 1
1380 # define log10f _log10f
1381 #endif
1383 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1384 # define _GLIBCXX_HAVE_LOG10L 1
1385 # define log10l _log10l
1386 #endif
1388 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1389 # define _GLIBCXX_HAVE_LOGF 1
1390 # define logf _logf
1391 #endif
1393 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1394 # define _GLIBCXX_HAVE_LOGL 1
1395 # define logl _logl
1396 #endif
1398 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1399 # define _GLIBCXX_HAVE_MODF 1
1400 # define modf _modf
1401 #endif
1403 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
1404 # define _GLIBCXX_HAVE_MODFF 1
1405 # define modff _modff
1406 #endif
1408 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
1409 # define _GLIBCXX_HAVE_MODFL 1
1410 # define modfl _modfl
1411 #endif
1413 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1414 # define _GLIBCXX_HAVE_POWF 1
1415 # define powf _powf
1416 #endif
1418 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1419 # define _GLIBCXX_HAVE_POWL 1
1420 # define powl _powl
1421 #endif
1423 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1424 # define _GLIBCXX_HAVE_QFPCLASS 1
1425 # define qfpclass _qfpclass
1426 #endif
1428 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1429 # define _GLIBCXX_HAVE_SINCOS 1
1430 # define sincos _sincos
1431 #endif
1433 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1434 # define _GLIBCXX_HAVE_SINCOSF 1
1435 # define sincosf _sincosf
1436 #endif
1438 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1439 # define _GLIBCXX_HAVE_SINCOSL 1
1440 # define sincosl _sincosl
1441 #endif
1443 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1444 # define _GLIBCXX_HAVE_SINF 1
1445 # define sinf _sinf
1446 #endif
1448 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1449 # define _GLIBCXX_HAVE_SINHF 1
1450 # define sinhf _sinhf
1451 #endif
1453 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1454 # define _GLIBCXX_HAVE_SINHL 1
1455 # define sinhl _sinhl
1456 #endif
1458 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1459 # define _GLIBCXX_HAVE_SINL 1
1460 # define sinl _sinl
1461 #endif
1463 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1464 # define _GLIBCXX_HAVE_SQRTF 1
1465 # define sqrtf _sqrtf
1466 #endif
1468 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1469 # define _GLIBCXX_HAVE_SQRTL 1
1470 # define sqrtl _sqrtl
1471 #endif
1473 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1474 # define _GLIBCXX_HAVE_STRTOF 1
1475 # define strtof _strtof
1476 #endif
1478 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1479 # define _GLIBCXX_HAVE_STRTOLD 1
1480 # define strtold _strtold
1481 #endif
1483 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1484 # define _GLIBCXX_HAVE_TANF 1
1485 # define tanf _tanf
1486 #endif
1488 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1489 # define _GLIBCXX_HAVE_TANHF 1
1490 # define tanhf _tanhf
1491 #endif
1493 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1494 # define _GLIBCXX_HAVE_TANHL 1
1495 # define tanhl _tanhl
1496 #endif
1498 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1499 # define _GLIBCXX_HAVE_TANL 1
1500 # define tanl _tanl
1501 #endif
1503 #endif // _GLIBCXX_CXX_CONFIG_H