libstdc++
c++config.h
Go to the documentation of this file.
00001 // Predefined symbols and macros -*- C++ -*-
00002 
00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
00004 // 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
00005 //
00006 // This file is part of the GNU ISO C++ Library.  This library is free
00007 // software; you can redistribute it and/or modify it under the
00008 // terms of the GNU General Public License as published by the
00009 // Free Software Foundation; either version 3, or (at your option)
00010 // any later version.
00011 
00012 // This library is distributed in the hope that it will be useful,
00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015 // GNU General Public License for more details.
00016 
00017 // Under Section 7 of GPL version 3, you are granted additional
00018 // permissions described in the GCC Runtime Library Exception, version
00019 // 3.1, as published by the Free Software Foundation.
00020 
00021 // You should have received a copy of the GNU General Public License and
00022 // a copy of the GCC Runtime Library Exception along with this program;
00023 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
00024 // <http://www.gnu.org/licenses/>.
00025 
00026 /** @file bits/c++config.h
00027  *  This is an internal header file, included by other library headers.
00028  *  Do not attempt to use it directly. @headername{iosfwd}
00029  */
00030 
00031 #ifndef _GLIBCXX_CXX_CONFIG_H
00032 #define _GLIBCXX_CXX_CONFIG_H 1
00033 
00034 // The current version of the C++ library in compressed ISO date format.
00035 #define __GLIBCXX__ 20110908
00036 
00037 // Macros for various attributes.
00038 //   _GLIBCXX_PURE
00039 //   _GLIBCXX_CONST
00040 //   _GLIBCXX_NORETURN
00041 //   _GLIBCXX_NOTHROW
00042 //   _GLIBCXX_VISIBILITY
00043 #ifndef _GLIBCXX_PURE
00044 # define _GLIBCXX_PURE __attribute__ ((__pure__))
00045 #endif
00046 
00047 #ifndef _GLIBCXX_CONST
00048 # define _GLIBCXX_CONST __attribute__ ((__const__))
00049 #endif
00050 
00051 #ifndef _GLIBCXX_NORETURN
00052 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
00053 #endif
00054 
00055 #ifndef _GLIBCXX_NOTHROW
00056 # ifdef __cplusplus
00057 #  define _GLIBCXX_NOTHROW throw()
00058 # else
00059 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
00060 # endif
00061 #endif
00062 
00063 // Macros for visibility attributes.
00064 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00065 //   _GLIBCXX_VISIBILITY
00066 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
00067 
00068 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00069 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
00070 #else
00071 // If this is not supplied by the OS-specific or CPU-specific
00072 // headers included below, it will be defined to an empty default.
00073 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
00074 #endif
00075 
00076 // Macros for deprecated attributes.
00077 //   _GLIBCXX_USE_DEPRECATED
00078 //   _GLIBCXX_DEPRECATED
00079 #ifndef _GLIBCXX_USE_DEPRECATED
00080 # define _GLIBCXX_USE_DEPRECATED 1
00081 #endif
00082 
00083 #if defined(__DEPRECATED) && defined(__GXX_EXPERIMENTAL_CXX0X__)
00084 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
00085 #else
00086 # define _GLIBCXX_DEPRECATED
00087 #endif
00088 
00089 #if __cplusplus
00090 
00091 // Macro for constexpr, to support in mixed 03/0x mode.
00092 #ifndef _GLIBCXX_CONSTEXPR
00093 # ifdef __GXX_EXPERIMENTAL_CXX0X__
00094 #  define _GLIBCXX_CONSTEXPR constexpr
00095 #  define _GLIBCXX_USE_CONSTEXPR constexpr
00096 # else
00097 #  define _GLIBCXX_CONSTEXPR
00098 #  define _GLIBCXX_USE_CONSTEXPR const
00099 # endif
00100 #endif
00101 
00102 // Macro for extern template, ie controling template linkage via use
00103 // of extern keyword on template declaration. As documented in the g++
00104 // manual, it inhibits all implicit instantiations and is used
00105 // throughout the library to avoid multiple weak definitions for
00106 // required types that are already explicitly instantiated in the
00107 // library binary. This substantially reduces the binary size of
00108 // resulting executables.
00109 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
00110 // templates only in basic_string, thus activating its debug-mode
00111 // checks even at -O0.
00112 # define _GLIBCXX_EXTERN_TEMPLATE 1
00113 
00114 /*
00115   Outline of libstdc++ namespaces.
00116 
00117   namespace std
00118   {
00119     namespace __debug { }
00120     namespace __parallel { }
00121     namespace __profile { }
00122     namespace __cxx1998 { }
00123 
00124     namespace __detail { }
00125 
00126     namespace rel_ops { }
00127 
00128     namespace tr1
00129     {
00130       namespace placeholders { }
00131       namespace regex_constants { }
00132       namespace __detail { }
00133     }
00134 
00135     namespace decimal { }
00136 
00137     namespace chrono { }
00138     namespace placeholders { }
00139     namespace regex_constants { }
00140     namespace this_thread { }
00141   }
00142 
00143   namespace abi { }
00144 
00145   namespace __gnu_cxx
00146   {
00147     namespace __detail { }
00148   }
00149 
00150   For full details see:
00151   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
00152 */
00153 namespace std
00154 {
00155   typedef __SIZE_TYPE__     size_t;
00156   typedef __PTRDIFF_TYPE__  ptrdiff_t;
00157 
00158 #ifdef __GXX_EXPERIMENTAL_CXX0X__
00159   typedef decltype(nullptr) nullptr_t;
00160 #endif
00161 }
00162 
00163 
00164 // Defined if inline namespaces are used for versioning.
00165 # define _GLIBCXX_INLINE_VERSION 0
00166 
00167 // Inline namespace for symbol versioning.
00168 #if _GLIBCXX_INLINE_VERSION
00169 namespace std
00170 {
00171   inline namespace _6 { }
00172 
00173   namespace rel_ops { inline namespace _6 { } }
00174 
00175   namespace tr1
00176   {
00177     inline namespace _6 { }
00178     namespace placeholders { inline namespace _6 { } }
00179     namespace regex_constants { inline namespace _6 { } }
00180     namespace __detail { inline namespace _6 { } }
00181   }
00182 
00183   namespace decimal { inline namespace _6 { } }
00184 
00185   namespace chrono { inline namespace _6 { } }
00186   namespace placeholders { inline namespace _6 { } }
00187   namespace regex_constants { inline namespace _6 { } }
00188   namespace this_thread { inline namespace _6 { } }
00189 
00190   namespace __detail { inline namespace _6 { } }
00191   namespace __regex { inline namespace _6 { } }
00192 }
00193 
00194 namespace __gnu_cxx
00195 {
00196   inline namespace _6 { }
00197   namespace __detail { inline namespace _6 { } }
00198 }
00199 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace _6 {
00200 # define _GLIBCXX_END_NAMESPACE_VERSION }
00201 #else
00202 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
00203 # define _GLIBCXX_END_NAMESPACE_VERSION
00204 #endif
00205 
00206 
00207 // Inline namespaces for special modes: debug, parallel, profile.
00208 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
00209     || defined(_GLIBCXX_PROFILE)
00210 namespace std
00211 {
00212   // Non-inline namespace for components replaced by alternates in active mode.
00213   namespace __cxx1998
00214   {
00215 #if _GLIBCXX_INLINE_VERSION
00216  inline namespace _6 { }
00217 #endif
00218   }
00219 
00220   // Inline namespace for debug mode.
00221 # ifdef _GLIBCXX_DEBUG
00222   inline namespace __debug { }
00223 # endif
00224 
00225   // Inline namespaces for parallel mode.
00226 # ifdef _GLIBCXX_PARALLEL
00227   inline namespace __parallel { }
00228 # endif
00229 
00230   // Inline namespaces for profile mode
00231 # ifdef _GLIBCXX_PROFILE
00232   inline namespace __profile { }
00233 # endif
00234 }
00235 
00236 // Check for invalid usage and unsupported mixed-mode use.
00237 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
00238 #  error illegal use of multiple inlined namespaces
00239 # endif
00240 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
00241 #  error illegal use of multiple inlined namespaces
00242 # endif
00243 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
00244 #  error illegal use of multiple inlined namespaces
00245 # endif
00246 
00247 // Check for invalid use due to lack for weak symbols.
00248 # if __NO_INLINE__ && !__GXX_WEAK__
00249 #  warning currently using inlined namespace mode which may fail \
00250    without inlining due to lack of weak symbols
00251 # endif
00252 #endif
00253 
00254 // Macros for namespace scope. Either namespace std:: or the name
00255 // of some nested namespace within it corresponding to the active mode.
00256 // _GLIBCXX_STD_A
00257 // _GLIBCXX_STD_C
00258 //
00259 // Macros for opening/closing conditional namespaces.
00260 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
00261 // _GLIBCXX_END_NAMESPACE_ALGO
00262 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00263 // _GLIBCXX_END_NAMESPACE_CONTAINER
00264 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
00265 # define _GLIBCXX_STD_C __cxx1998
00266 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
00267      namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
00268 # define _GLIBCXX_END_NAMESPACE_CONTAINER \
00269      } _GLIBCXX_END_NAMESPACE_VERSION
00270 # undef _GLIBCXX_EXTERN_TEMPLATE
00271 #  define _GLIBCXX_EXTERN_TEMPLATE 1 -1
00272 #endif
00273 
00274 #ifdef _GLIBCXX_PARALLEL
00275 # define _GLIBCXX_STD_A __cxx1998
00276 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
00277      namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
00278 # define _GLIBCXX_END_NAMESPACE_ALGO \
00279      } _GLIBCXX_END_NAMESPACE_VERSION
00280 #endif
00281 
00282 #ifndef _GLIBCXX_STD_A
00283 # define _GLIBCXX_STD_A std
00284 #endif
00285 
00286 #ifndef _GLIBCXX_STD_C
00287 # define _GLIBCXX_STD_C std
00288 #endif
00289 
00290 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
00291 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
00292 #endif
00293 
00294 #ifndef _GLIBCXX_END_NAMESPACE_ALGO
00295 # define _GLIBCXX_END_NAMESPACE_ALGO
00296 #endif
00297 
00298 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00299 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00300 #endif
00301 
00302 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
00303 # define _GLIBCXX_END_NAMESPACE_CONTAINER
00304 #endif
00305 
00306 // GLIBCXX_ABI Deprecated
00307 // Define if compatibility should be provided for -mlong-double-64.
00308 #define _GLIBCXX_LONG_DOUBLE_COMPAT 1
00309 
00310 // Inline namespace for long double 128 mode.
00311 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
00312 namespace std
00313 {
00314   inline namespace __gnu_cxx_ldbl128 { }
00315 }
00316 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
00317 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
00318 # define _GLIBCXX_END_NAMESPACE_LDBL }
00319 #else
00320 # define _GLIBCXX_NAMESPACE_LDBL
00321 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
00322 # define _GLIBCXX_END_NAMESPACE_LDBL
00323 #endif
00324 
00325 // Assert.
00326 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
00327 # define __glibcxx_assert(_Condition)
00328 #else
00329 namespace std
00330 {
00331   // Avoid the use of assert, because we're trying to keep the <cassert>
00332   // include out of the mix.
00333   inline void
00334   __replacement_assert(const char* __file, int __line,
00335                const char* __function, const char* __condition)
00336   {
00337     __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
00338              __function, __condition);
00339     __builtin_abort();
00340   }
00341 }
00342 #define __glibcxx_assert(_Condition)                     \
00343   do                                     \
00344   {                                      \
00345     if (! (_Condition))                                                  \
00346       std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
00347                 #_Condition);                \
00348   } while (false)
00349 #endif
00350 
00351 // Macros for race detectors.
00352 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
00353 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
00354 // atomic (lock-free) synchronization to race detectors:
00355 // the race detector will infer a happens-before arc from the former to the
00356 // latter when they share the same argument pointer.
00357 //
00358 // The most frequent use case for these macros (and the only case in the
00359 // current implementation of the library) is atomic reference counting:
00360 //   void _M_remove_reference()
00361 //   {
00362 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
00363 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
00364 //       {
00365 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
00366 //         _M_destroy(__a);
00367 //       }
00368 //   }
00369 // The annotations in this example tell the race detector that all memory
00370 // accesses occurred when the refcount was positive do not race with
00371 // memory accesses which occurred after the refcount became zero.
00372 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
00373 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
00374 #endif
00375 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
00376 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
00377 #endif
00378 
00379 // Macros for C linkage: define extern "C" linkage only when using C++.
00380 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
00381 # define _GLIBCXX_END_EXTERN_C }
00382 
00383 #else // !__cplusplus
00384 # define _GLIBCXX_BEGIN_EXTERN_C
00385 # define _GLIBCXX_END_EXTERN_C
00386 #endif
00387 
00388 
00389 // First includes.
00390 
00391 // Pick up any OS-specific definitions.
00392 #include <bits/os_defines.h>
00393 
00394 // Pick up any CPU-specific definitions.
00395 #include <bits/cpu_defines.h>
00396 
00397 // If platform uses neither visibility nor psuedo-visibility,
00398 // specify empty default for namespace annotation macros.
00399 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
00400 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
00401 #endif
00402 
00403 // Certain function definitions that are meant to be overridable from
00404 // user code are decorated with this macro.  For some targets, this
00405 // macro causes these definitions to be weak.
00406 #ifndef _GLIBCXX_WEAK_DEFINITION
00407 # define _GLIBCXX_WEAK_DEFINITION
00408 #endif
00409 
00410 
00411 // The remainder of the prewritten config is automatic; all the
00412 // user hooks are listed above.
00413 
00414 // Create a boolean flag to be used to determine if --fast-math is set.
00415 #ifdef __FAST_MATH__
00416 # define _GLIBCXX_FAST_MATH 1
00417 #else
00418 # define _GLIBCXX_FAST_MATH 0
00419 #endif
00420 
00421 // This marks string literals in header files to be extracted for eventual
00422 // translation.  It is primarily used for messages in thrown exceptions; see
00423 // src/functexcept.cc.  We use __N because the more traditional _N is used
00424 // for something else under certain OSes (see BADNAMES).
00425 #define __N(msgid)     (msgid)
00426 
00427 // For example, <windows.h> is known to #define min and max as macros...
00428 #undef min
00429 #undef max
00430 
00431 // End of prewritten config; the settings discovered at configure time follow.
00432 /* config.h.  Generated from config.h.in by configure.  */
00433 /* config.h.in.  Generated from configure.ac by autoheader.  */
00434 
00435 /* Define to 1 if you have the `acosf' function. */
00436 #define _GLIBCXX_HAVE_ACOSF 1
00437 
00438 /* Define to 1 if you have the `acosl' function. */
00439 #define _GLIBCXX_HAVE_ACOSL 1
00440 
00441 /* Define to 1 if you have the `asinf' function. */
00442 #define _GLIBCXX_HAVE_ASINF 1
00443 
00444 /* Define to 1 if you have the `asinl' function. */
00445 #define _GLIBCXX_HAVE_ASINL 1
00446 
00447 /* Define to 1 if the target assembler supports .symver directive. */
00448 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
00449 
00450 /* Define to 1 if you have the `atan2f' function. */
00451 #define _GLIBCXX_HAVE_ATAN2F 1
00452 
00453 /* Define to 1 if you have the `atan2l' function. */
00454 #define _GLIBCXX_HAVE_ATAN2L 1
00455 
00456 /* Define to 1 if you have the `atanf' function. */
00457 #define _GLIBCXX_HAVE_ATANF 1
00458 
00459 /* Define to 1 if you have the `atanl' function. */
00460 #define _GLIBCXX_HAVE_ATANL 1
00461 
00462 /* Define to 1 if the target assembler supports thread-local storage. */
00463 /* #undef _GLIBCXX_HAVE_CC_TLS */
00464 
00465 /* Define to 1 if you have the `ceilf' function. */
00466 #define _GLIBCXX_HAVE_CEILF 1
00467 
00468 /* Define to 1 if you have the `ceill' function. */
00469 #define _GLIBCXX_HAVE_CEILL 1
00470 
00471 /* Define to 1 if you have the <complex.h> header file. */
00472 #define _GLIBCXX_HAVE_COMPLEX_H 1
00473 
00474 /* Define to 1 if you have the `cosf' function. */
00475 #define _GLIBCXX_HAVE_COSF 1
00476 
00477 /* Define to 1 if you have the `coshf' function. */
00478 #define _GLIBCXX_HAVE_COSHF 1
00479 
00480 /* Define to 1 if you have the `coshl' function. */
00481 #define _GLIBCXX_HAVE_COSHL 1
00482 
00483 /* Define to 1 if you have the `cosl' function. */
00484 #define _GLIBCXX_HAVE_COSL 1
00485 
00486 /* Define to 1 if you have the <dlfcn.h> header file. */
00487 #define _GLIBCXX_HAVE_DLFCN_H 1
00488 
00489 /* Define if EBADMSG exists. */
00490 #define _GLIBCXX_HAVE_EBADMSG 1
00491 
00492 /* Define if ECANCELED exists. */
00493 #define _GLIBCXX_HAVE_ECANCELED 1
00494 
00495 /* Define if EIDRM exists. */
00496 #define _GLIBCXX_HAVE_EIDRM 1
00497 
00498 /* Define to 1 if you have the <endian.h> header file. */
00499 #define _GLIBCXX_HAVE_ENDIAN_H 1
00500 
00501 /* Define if ENODATA exists. */
00502 #define _GLIBCXX_HAVE_ENODATA 1
00503 
00504 /* Define if ENOLINK exists. */
00505 #define _GLIBCXX_HAVE_ENOLINK 1
00506 
00507 /* Define if ENOSR exists. */
00508 #define _GLIBCXX_HAVE_ENOSR 1
00509 
00510 /* Define if ENOSTR exists. */
00511 #define _GLIBCXX_HAVE_ENOSTR 1
00512 
00513 /* Define if ENOTRECOVERABLE exists. */
00514 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
00515 
00516 /* Define if ENOTSUP exists. */
00517 #define _GLIBCXX_HAVE_ENOTSUP 1
00518 
00519 /* Define if EOVERFLOW exists. */
00520 #define _GLIBCXX_HAVE_EOVERFLOW 1
00521 
00522 /* Define if EOWNERDEAD exists. */
00523 #define _GLIBCXX_HAVE_EOWNERDEAD 1
00524 
00525 /* Define if EPROTO exists. */
00526 #define _GLIBCXX_HAVE_EPROTO 1
00527 
00528 /* Define if ETIME exists. */
00529 #define _GLIBCXX_HAVE_ETIME 1
00530 
00531 /* Define if ETXTBSY exists. */
00532 #define _GLIBCXX_HAVE_ETXTBSY 1
00533 
00534 /* Define to 1 if you have the <execinfo.h> header file. */
00535 #define _GLIBCXX_HAVE_EXECINFO_H 1
00536 
00537 /* Define to 1 if you have the `expf' function. */
00538 #define _GLIBCXX_HAVE_EXPF 1
00539 
00540 /* Define to 1 if you have the `expl' function. */
00541 #define _GLIBCXX_HAVE_EXPL 1
00542 
00543 /* Define to 1 if you have the `fabsf' function. */
00544 #define _GLIBCXX_HAVE_FABSF 1
00545 
00546 /* Define to 1 if you have the `fabsl' function. */
00547 #define _GLIBCXX_HAVE_FABSL 1
00548 
00549 /* Define to 1 if you have the <fenv.h> header file. */
00550 #define _GLIBCXX_HAVE_FENV_H 1
00551 
00552 /* Define to 1 if you have the `finite' function. */
00553 #define _GLIBCXX_HAVE_FINITE 1
00554 
00555 /* Define to 1 if you have the `finitef' function. */
00556 #define _GLIBCXX_HAVE_FINITEF 1
00557 
00558 /* Define to 1 if you have the `finitel' function. */
00559 #define _GLIBCXX_HAVE_FINITEL 1
00560 
00561 /* Define to 1 if you have the <float.h> header file. */
00562 #define _GLIBCXX_HAVE_FLOAT_H 1
00563 
00564 /* Define to 1 if you have the `floorf' function. */
00565 #define _GLIBCXX_HAVE_FLOORF 1
00566 
00567 /* Define to 1 if you have the `floorl' function. */
00568 #define _GLIBCXX_HAVE_FLOORL 1
00569 
00570 /* Define to 1 if you have the `fmodf' function. */
00571 #define _GLIBCXX_HAVE_FMODF 1
00572 
00573 /* Define to 1 if you have the `fmodl' function. */
00574 #define _GLIBCXX_HAVE_FMODL 1
00575 
00576 /* Define to 1 if you have the `fpclass' function. */
00577 /* #undef _GLIBCXX_HAVE_FPCLASS */
00578 
00579 /* Define to 1 if you have the <fp.h> header file. */
00580 /* #undef _GLIBCXX_HAVE_FP_H */
00581 
00582 /* Define to 1 if you have the `frexpf' function. */
00583 #define _GLIBCXX_HAVE_FREXPF 1
00584 
00585 /* Define to 1 if you have the `frexpl' function. */
00586 #define _GLIBCXX_HAVE_FREXPL 1
00587 
00588 /* Define if _Unwind_GetIPInfo is available. */
00589 #define _GLIBCXX_HAVE_GETIPINFO 1
00590 
00591 /* Define if gthr-default.h exists (meaning that threading support is
00592    enabled). */
00593 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
00594 
00595 /* Define to 1 if you have the `hypot' function. */
00596 #define _GLIBCXX_HAVE_HYPOT 1
00597 
00598 /* Define to 1 if you have the `hypotf' function. */
00599 #define _GLIBCXX_HAVE_HYPOTF 1
00600 
00601 /* Define to 1 if you have the `hypotl' function. */
00602 #define _GLIBCXX_HAVE_HYPOTL 1
00603 
00604 /* Define if you have the iconv() function. */
00605 #define _GLIBCXX_HAVE_ICONV 1
00606 
00607 /* Define to 1 if you have the <ieeefp.h> header file. */
00608 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00609 
00610 /* Define if int64_t is available in <stdint.h>. */
00611 #define _GLIBCXX_HAVE_INT64_T 1
00612 
00613 /* Define if int64_t is a long. */
00614 #define _GLIBCXX_HAVE_INT64_T_LONG 1
00615 
00616 /* Define if int64_t is a long long. */
00617 /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
00618 
00619 /* Define to 1 if you have the <inttypes.h> header file. */
00620 #define _GLIBCXX_HAVE_INTTYPES_H 1
00621 
00622 /* Define to 1 if you have the `isinf' function. */
00623 #define _GLIBCXX_HAVE_ISINF 1
00624 
00625 /* Define to 1 if you have the `isinff' function. */
00626 #define _GLIBCXX_HAVE_ISINFF 1
00627 
00628 /* Define to 1 if you have the `isinfl' function. */
00629 #define _GLIBCXX_HAVE_ISINFL 1
00630 
00631 /* Define to 1 if you have the `isnan' function. */
00632 #define _GLIBCXX_HAVE_ISNAN 1
00633 
00634 /* Define to 1 if you have the `isnanf' function. */
00635 #define _GLIBCXX_HAVE_ISNANF 1
00636 
00637 /* Define to 1 if you have the `isnanl' function. */
00638 #define _GLIBCXX_HAVE_ISNANL 1
00639 
00640 /* Defined if iswblank exists. */
00641 #define _GLIBCXX_HAVE_ISWBLANK 1
00642 
00643 /* Define if LC_MESSAGES is available in <locale.h>. */
00644 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00645 
00646 /* Define to 1 if you have the `ldexpf' function. */
00647 #define _GLIBCXX_HAVE_LDEXPF 1
00648 
00649 /* Define to 1 if you have the `ldexpl' function. */
00650 #define _GLIBCXX_HAVE_LDEXPL 1
00651 
00652 /* Define to 1 if you have the <libintl.h> header file. */
00653 #define _GLIBCXX_HAVE_LIBINTL_H 1
00654 
00655 /* Only used in build directory testsuite_hooks.h. */
00656 #define _GLIBCXX_HAVE_LIMIT_AS 1
00657 
00658 /* Only used in build directory testsuite_hooks.h. */
00659 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00660 
00661 /* Only used in build directory testsuite_hooks.h. */
00662 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00663 
00664 /* Only used in build directory testsuite_hooks.h. */
00665 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00666 
00667 /* Only used in build directory testsuite_hooks.h. */
00668 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00669 
00670 /* Define if futex syscall is available. */
00671 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
00672 
00673 /* Define to 1 if you have the <locale.h> header file. */
00674 #define _GLIBCXX_HAVE_LOCALE_H 1
00675 
00676 /* Define to 1 if you have the `log10f' function. */
00677 #define _GLIBCXX_HAVE_LOG10F 1
00678 
00679 /* Define to 1 if you have the `log10l' function. */
00680 #define _GLIBCXX_HAVE_LOG10L 1
00681 
00682 /* Define to 1 if you have the `logf' function. */
00683 #define _GLIBCXX_HAVE_LOGF 1
00684 
00685 /* Define to 1 if you have the `logl' function. */
00686 #define _GLIBCXX_HAVE_LOGL 1
00687 
00688 /* Define to 1 if you have the <machine/endian.h> header file. */
00689 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00690 
00691 /* Define to 1 if you have the <machine/param.h> header file. */
00692 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00693 
00694 /* Define if mbstate_t exists in wchar.h. */
00695 #define _GLIBCXX_HAVE_MBSTATE_T 1
00696 
00697 /* Define to 1 if you have the <memory.h> header file. */
00698 #define _GLIBCXX_HAVE_MEMORY_H 1
00699 
00700 /* Define to 1 if you have the `modf' function. */
00701 #define _GLIBCXX_HAVE_MODF 1
00702 
00703 /* Define to 1 if you have the `modff' function. */
00704 #define _GLIBCXX_HAVE_MODFF 1
00705 
00706 /* Define to 1 if you have the `modfl' function. */
00707 #define _GLIBCXX_HAVE_MODFL 1
00708 
00709 /* Define to 1 if you have the <nan.h> header file. */
00710 /* #undef _GLIBCXX_HAVE_NAN_H */
00711 
00712 /* Define if poll is available in <poll.h>. */
00713 #define _GLIBCXX_HAVE_POLL 1
00714 
00715 /* Define to 1 if you have the `powf' function. */
00716 #define _GLIBCXX_HAVE_POWF 1
00717 
00718 /* Define to 1 if you have the `powl' function. */
00719 #define _GLIBCXX_HAVE_POWL 1
00720 
00721 /* Define to 1 if you have the `qfpclass' function. */
00722 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00723 
00724 /* Define to 1 if you have the `setenv' function. */
00725 #define _GLIBCXX_HAVE_SETENV 1
00726 
00727 /* Define to 1 if you have the `sincos' function. */
00728 #define _GLIBCXX_HAVE_SINCOS 1
00729 
00730 /* Define to 1 if you have the `sincosf' function. */
00731 #define _GLIBCXX_HAVE_SINCOSF 1
00732 
00733 /* Define to 1 if you have the `sincosl' function. */
00734 #define _GLIBCXX_HAVE_SINCOSL 1
00735 
00736 /* Define to 1 if you have the `sinf' function. */
00737 #define _GLIBCXX_HAVE_SINF 1
00738 
00739 /* Define to 1 if you have the `sinhf' function. */
00740 #define _GLIBCXX_HAVE_SINHF 1
00741 
00742 /* Define to 1 if you have the `sinhl' function. */
00743 #define _GLIBCXX_HAVE_SINHL 1
00744 
00745 /* Define to 1 if you have the `sinl' function. */
00746 #define _GLIBCXX_HAVE_SINL 1
00747 
00748 /* Define to 1 if you have the `sqrtf' function. */
00749 #define _GLIBCXX_HAVE_SQRTF 1
00750 
00751 /* Define to 1 if you have the `sqrtl' function. */
00752 #define _GLIBCXX_HAVE_SQRTL 1
00753 
00754 /* Define to 1 if you have the <stdbool.h> header file. */
00755 #define _GLIBCXX_HAVE_STDBOOL_H 1
00756 
00757 /* Define to 1 if you have the <stdint.h> header file. */
00758 #define _GLIBCXX_HAVE_STDINT_H 1
00759 
00760 /* Define to 1 if you have the <stdlib.h> header file. */
00761 #define _GLIBCXX_HAVE_STDLIB_H 1
00762 
00763 /* Define if strerror_l is available in <string.h>. */
00764 #define _GLIBCXX_HAVE_STRERROR_L 1
00765 
00766 /* Define if strerror_r is available in <string.h>. */
00767 #define _GLIBCXX_HAVE_STRERROR_R 1
00768 
00769 /* Define to 1 if you have the <strings.h> header file. */
00770 #define _GLIBCXX_HAVE_STRINGS_H 1
00771 
00772 /* Define to 1 if you have the <string.h> header file. */
00773 #define _GLIBCXX_HAVE_STRING_H 1
00774 
00775 /* Define to 1 if you have the `strtof' function. */
00776 #define _GLIBCXX_HAVE_STRTOF 1
00777 
00778 /* Define to 1 if you have the `strtold' function. */
00779 #define _GLIBCXX_HAVE_STRTOLD 1
00780 
00781 /* Define if strxfrm_l is available in <string.h>. */
00782 #define _GLIBCXX_HAVE_STRXFRM_L 1
00783 
00784 /* Define to 1 if the target runtime linker supports binding the same symbol
00785    to different versions. */
00786 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
00787 
00788 /* Define to 1 if you have the <sys/filio.h> header file. */
00789 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
00790 
00791 /* Define to 1 if you have the <sys/ioctl.h> header file. */
00792 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
00793 
00794 /* Define to 1 if you have the <sys/ipc.h> header file. */
00795 #define _GLIBCXX_HAVE_SYS_IPC_H 1
00796 
00797 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
00798 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
00799 
00800 /* Define to 1 if you have the <sys/machine.h> header file. */
00801 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
00802 
00803 /* Define to 1 if you have the <sys/param.h> header file. */
00804 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
00805 
00806 /* Define to 1 if you have the <sys/resource.h> header file. */
00807 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
00808 
00809 /* Define to 1 if you have the <sys/sem.h> header file. */
00810 #define _GLIBCXX_HAVE_SYS_SEM_H 1
00811 
00812 /* Define to 1 if you have the <sys/stat.h> header file. */
00813 #define _GLIBCXX_HAVE_SYS_STAT_H 1
00814 
00815 /* Define to 1 if you have the <sys/time.h> header file. */
00816 #define _GLIBCXX_HAVE_SYS_TIME_H 1
00817 
00818 /* Define to 1 if you have the <sys/types.h> header file. */
00819 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
00820 
00821 /* Define to 1 if you have the <sys/uio.h> header file. */
00822 #define _GLIBCXX_HAVE_SYS_UIO_H 1
00823 
00824 /* Define if S_IFREG is available in <sys/stat.h>. */
00825 /* #undef _GLIBCXX_HAVE_S_IFREG */
00826 
00827 /* Define if S_IFREG is available in <sys/stat.h>. */
00828 #define _GLIBCXX_HAVE_S_ISREG 1
00829 
00830 /* Define to 1 if you have the `tanf' function. */
00831 #define _GLIBCXX_HAVE_TANF 1
00832 
00833 /* Define to 1 if you have the `tanhf' function. */
00834 #define _GLIBCXX_HAVE_TANHF 1
00835 
00836 /* Define to 1 if you have the `tanhl' function. */
00837 #define _GLIBCXX_HAVE_TANHL 1
00838 
00839 /* Define to 1 if you have the `tanl' function. */
00840 #define _GLIBCXX_HAVE_TANL 1
00841 
00842 /* Define to 1 if you have the <tgmath.h> header file. */
00843 #define _GLIBCXX_HAVE_TGMATH_H 1
00844 
00845 /* Define to 1 if the target supports thread-local storage. */
00846 #define _GLIBCXX_HAVE_TLS 1
00847 
00848 /* Define to 1 if you have the <unistd.h> header file. */
00849 #define _GLIBCXX_HAVE_UNISTD_H 1
00850 
00851 /* Defined if vfwscanf exists. */
00852 #define _GLIBCXX_HAVE_VFWSCANF 1
00853 
00854 /* Defined if vswscanf exists. */
00855 #define _GLIBCXX_HAVE_VSWSCANF 1
00856 
00857 /* Defined if vwscanf exists. */
00858 #define _GLIBCXX_HAVE_VWSCANF 1
00859 
00860 /* Define to 1 if you have the <wchar.h> header file. */
00861 #define _GLIBCXX_HAVE_WCHAR_H 1
00862 
00863 /* Defined if wcstof exists. */
00864 #define _GLIBCXX_HAVE_WCSTOF 1
00865 
00866 /* Define to 1 if you have the <wctype.h> header file. */
00867 #define _GLIBCXX_HAVE_WCTYPE_H 1
00868 
00869 /* Define if writev is available in <sys/uio.h>. */
00870 #define _GLIBCXX_HAVE_WRITEV 1
00871 
00872 /* Define to 1 if you have the `_acosf' function. */
00873 /* #undef _GLIBCXX_HAVE__ACOSF */
00874 
00875 /* Define to 1 if you have the `_acosl' function. */
00876 /* #undef _GLIBCXX_HAVE__ACOSL */
00877 
00878 /* Define to 1 if you have the `_asinf' function. */
00879 /* #undef _GLIBCXX_HAVE__ASINF */
00880 
00881 /* Define to 1 if you have the `_asinl' function. */
00882 /* #undef _GLIBCXX_HAVE__ASINL */
00883 
00884 /* Define to 1 if you have the `_atan2f' function. */
00885 /* #undef _GLIBCXX_HAVE__ATAN2F */
00886 
00887 /* Define to 1 if you have the `_atan2l' function. */
00888 /* #undef _GLIBCXX_HAVE__ATAN2L */
00889 
00890 /* Define to 1 if you have the `_atanf' function. */
00891 /* #undef _GLIBCXX_HAVE__ATANF */
00892 
00893 /* Define to 1 if you have the `_atanl' function. */
00894 /* #undef _GLIBCXX_HAVE__ATANL */
00895 
00896 /* Define to 1 if you have the `_ceilf' function. */
00897 /* #undef _GLIBCXX_HAVE__CEILF */
00898 
00899 /* Define to 1 if you have the `_ceill' function. */
00900 /* #undef _GLIBCXX_HAVE__CEILL */
00901 
00902 /* Define to 1 if you have the `_cosf' function. */
00903 /* #undef _GLIBCXX_HAVE__COSF */
00904 
00905 /* Define to 1 if you have the `_coshf' function. */
00906 /* #undef _GLIBCXX_HAVE__COSHF */
00907 
00908 /* Define to 1 if you have the `_coshl' function. */
00909 /* #undef _GLIBCXX_HAVE__COSHL */
00910 
00911 /* Define to 1 if you have the `_cosl' function. */
00912 /* #undef _GLIBCXX_HAVE__COSL */
00913 
00914 /* Define to 1 if you have the `_expf' function. */
00915 /* #undef _GLIBCXX_HAVE__EXPF */
00916 
00917 /* Define to 1 if you have the `_expl' function. */
00918 /* #undef _GLIBCXX_HAVE__EXPL */
00919 
00920 /* Define to 1 if you have the `_fabsf' function. */
00921 /* #undef _GLIBCXX_HAVE__FABSF */
00922 
00923 /* Define to 1 if you have the `_fabsl' function. */
00924 /* #undef _GLIBCXX_HAVE__FABSL */
00925 
00926 /* Define to 1 if you have the `_finite' function. */
00927 /* #undef _GLIBCXX_HAVE__FINITE */
00928 
00929 /* Define to 1 if you have the `_finitef' function. */
00930 /* #undef _GLIBCXX_HAVE__FINITEF */
00931 
00932 /* Define to 1 if you have the `_finitel' function. */
00933 /* #undef _GLIBCXX_HAVE__FINITEL */
00934 
00935 /* Define to 1 if you have the `_floorf' function. */
00936 /* #undef _GLIBCXX_HAVE__FLOORF */
00937 
00938 /* Define to 1 if you have the `_floorl' function. */
00939 /* #undef _GLIBCXX_HAVE__FLOORL */
00940 
00941 /* Define to 1 if you have the `_fmodf' function. */
00942 /* #undef _GLIBCXX_HAVE__FMODF */
00943 
00944 /* Define to 1 if you have the `_fmodl' function. */
00945 /* #undef _GLIBCXX_HAVE__FMODL */
00946 
00947 /* Define to 1 if you have the `_fpclass' function. */
00948 /* #undef _GLIBCXX_HAVE__FPCLASS */
00949 
00950 /* Define to 1 if you have the `_frexpf' function. */
00951 /* #undef _GLIBCXX_HAVE__FREXPF */
00952 
00953 /* Define to 1 if you have the `_frexpl' function. */
00954 /* #undef _GLIBCXX_HAVE__FREXPL */
00955 
00956 /* Define to 1 if you have the `_hypot' function. */
00957 /* #undef _GLIBCXX_HAVE__HYPOT */
00958 
00959 /* Define to 1 if you have the `_hypotf' function. */
00960 /* #undef _GLIBCXX_HAVE__HYPOTF */
00961 
00962 /* Define to 1 if you have the `_hypotl' function. */
00963 /* #undef _GLIBCXX_HAVE__HYPOTL */
00964 
00965 /* Define to 1 if you have the `_isinf' function. */
00966 /* #undef _GLIBCXX_HAVE__ISINF */
00967 
00968 /* Define to 1 if you have the `_isinff' function. */
00969 /* #undef _GLIBCXX_HAVE__ISINFF */
00970 
00971 /* Define to 1 if you have the `_isinfl' function. */
00972 /* #undef _GLIBCXX_HAVE__ISINFL */
00973 
00974 /* Define to 1 if you have the `_isnan' function. */
00975 /* #undef _GLIBCXX_HAVE__ISNAN */
00976 
00977 /* Define to 1 if you have the `_isnanf' function. */
00978 /* #undef _GLIBCXX_HAVE__ISNANF */
00979 
00980 /* Define to 1 if you have the `_isnanl' function. */
00981 /* #undef _GLIBCXX_HAVE__ISNANL */
00982 
00983 /* Define to 1 if you have the `_ldexpf' function. */
00984 /* #undef _GLIBCXX_HAVE__LDEXPF */
00985 
00986 /* Define to 1 if you have the `_ldexpl' function. */
00987 /* #undef _GLIBCXX_HAVE__LDEXPL */
00988 
00989 /* Define to 1 if you have the `_log10f' function. */
00990 /* #undef _GLIBCXX_HAVE__LOG10F */
00991 
00992 /* Define to 1 if you have the `_log10l' function. */
00993 /* #undef _GLIBCXX_HAVE__LOG10L */
00994 
00995 /* Define to 1 if you have the `_logf' function. */
00996 /* #undef _GLIBCXX_HAVE__LOGF */
00997 
00998 /* Define to 1 if you have the `_logl' function. */
00999 /* #undef _GLIBCXX_HAVE__LOGL */
01000 
01001 /* Define to 1 if you have the `_modf' function. */
01002 /* #undef _GLIBCXX_HAVE__MODF */
01003 
01004 /* Define to 1 if you have the `_modff' function. */
01005 /* #undef _GLIBCXX_HAVE__MODFF */
01006 
01007 /* Define to 1 if you have the `_modfl' function. */
01008 /* #undef _GLIBCXX_HAVE__MODFL */
01009 
01010 /* Define to 1 if you have the `_powf' function. */
01011 /* #undef _GLIBCXX_HAVE__POWF */
01012 
01013 /* Define to 1 if you have the `_powl' function. */
01014 /* #undef _GLIBCXX_HAVE__POWL */
01015 
01016 /* Define to 1 if you have the `_qfpclass' function. */
01017 /* #undef _GLIBCXX_HAVE__QFPCLASS */
01018 
01019 /* Define to 1 if you have the `_sincos' function. */
01020 /* #undef _GLIBCXX_HAVE__SINCOS */
01021 
01022 /* Define to 1 if you have the `_sincosf' function. */
01023 /* #undef _GLIBCXX_HAVE__SINCOSF */
01024 
01025 /* Define to 1 if you have the `_sincosl' function. */
01026 /* #undef _GLIBCXX_HAVE__SINCOSL */
01027 
01028 /* Define to 1 if you have the `_sinf' function. */
01029 /* #undef _GLIBCXX_HAVE__SINF */
01030 
01031 /* Define to 1 if you have the `_sinhf' function. */
01032 /* #undef _GLIBCXX_HAVE__SINHF */
01033 
01034 /* Define to 1 if you have the `_sinhl' function. */
01035 /* #undef _GLIBCXX_HAVE__SINHL */
01036 
01037 /* Define to 1 if you have the `_sinl' function. */
01038 /* #undef _GLIBCXX_HAVE__SINL */
01039 
01040 /* Define to 1 if you have the `_sqrtf' function. */
01041 /* #undef _GLIBCXX_HAVE__SQRTF */
01042 
01043 /* Define to 1 if you have the `_sqrtl' function. */
01044 /* #undef _GLIBCXX_HAVE__SQRTL */
01045 
01046 /* Define to 1 if you have the `_tanf' function. */
01047 /* #undef _GLIBCXX_HAVE__TANF */
01048 
01049 /* Define to 1 if you have the `_tanhf' function. */
01050 /* #undef _GLIBCXX_HAVE__TANHF */
01051 
01052 /* Define to 1 if you have the `_tanhl' function. */
01053 /* #undef _GLIBCXX_HAVE__TANHL */
01054 
01055 /* Define to 1 if you have the `_tanl' function. */
01056 /* #undef _GLIBCXX_HAVE__TANL */
01057 
01058 /* Define as const if the declaration of iconv() needs const. */
01059 #define _GLIBCXX_ICONV_CONST 
01060 
01061 /* Define to the sub-directory in which libtool stores uninstalled libraries.
01062    */
01063 #define LT_OBJDIR ".libs/"
01064 
01065 /* Name of package */
01066 /* #undef _GLIBCXX_PACKAGE */
01067 
01068 /* Define to the address where bug reports for this package should be sent. */
01069 #define _GLIBCXX_PACKAGE_BUGREPORT ""
01070 
01071 /* Define to the full name of this package. */
01072 #define _GLIBCXX_PACKAGE_NAME "package-unused"
01073 
01074 /* Define to the full name and version of this package. */
01075 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
01076 
01077 /* Define to the one symbol short name of this package. */
01078 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
01079 
01080 /* Define to the home page for this package. */
01081 #define _GLIBCXX_PACKAGE_URL ""
01082 
01083 /* Define to the version of this package. */
01084 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
01085 
01086 /* The size of `char', as computed by sizeof. */
01087 /* #undef SIZEOF_CHAR */
01088 
01089 /* The size of `int', as computed by sizeof. */
01090 /* #undef SIZEOF_INT */
01091 
01092 /* The size of `long', as computed by sizeof. */
01093 /* #undef SIZEOF_LONG */
01094 
01095 /* The size of `short', as computed by sizeof. */
01096 /* #undef SIZEOF_SHORT */
01097 
01098 /* The size of `void *', as computed by sizeof. */
01099 /* #undef SIZEOF_VOID_P */
01100 
01101 /* Define to 1 if you have the ANSI C header files. */
01102 #define STDC_HEADERS 1
01103 
01104 /* Version number of package */
01105 /* #undef _GLIBCXX_VERSION */
01106 
01107 /* Define if builtin atomic operations for bool are supported on this host. */
01108 #define _GLIBCXX_ATOMIC_BUILTINS_1 1
01109 
01110 /* Define if builtin atomic operations for short are supported on this host.
01111    */
01112 #define _GLIBCXX_ATOMIC_BUILTINS_2 1
01113 
01114 /* Define if builtin atomic operations for int are supported on this host. */
01115 #define _GLIBCXX_ATOMIC_BUILTINS_4 1
01116 
01117 /* Define if builtin atomic operations for long long are supported on this
01118    host. */
01119 #define _GLIBCXX_ATOMIC_BUILTINS_8 1
01120 
01121 /* Define to use concept checking code from the boost libraries. */
01122 /* #undef _GLIBCXX_CONCEPT_CHECKS */
01123 
01124 /* Define if a fully dynamic basic_string is wanted. */
01125 /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
01126 
01127 /* Define if gthreads library is available. */
01128 #define _GLIBCXX_HAS_GTHREADS 1
01129 
01130 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
01131 #define _GLIBCXX_HOSTED 1
01132 
01133 /* Define if compatibility should be provided for -mlong-double-64. */
01134 
01135 /* Define if ptrdiff_t is int. */
01136 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
01137 
01138 /* Define if using setrlimit to set resource limits during "make check" */
01139 #define _GLIBCXX_RES_LIMITS 1
01140 
01141 /* Define if size_t is unsigned int. */
01142 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
01143 
01144 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
01145 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
01146 
01147 /* Define to the value of the EOF integer constant. */
01148 #define _GLIBCXX_STDIO_EOF -1
01149 
01150 /* Define to the value of the SEEK_CUR integer constant. */
01151 #define _GLIBCXX_STDIO_SEEK_CUR 1
01152 
01153 /* Define to the value of the SEEK_END integer constant. */
01154 #define _GLIBCXX_STDIO_SEEK_END 2
01155 
01156 /* Define to use symbol versioning in the shared library. */
01157 #define _GLIBCXX_SYMVER 1
01158 
01159 /* Define to use darwin versioning in the shared library. */
01160 /* #undef _GLIBCXX_SYMVER_DARWIN */
01161 
01162 /* Define to use GNU versioning in the shared library. */
01163 #define _GLIBCXX_SYMVER_GNU 1
01164 
01165 /* Define to use GNU namespace versioning in the shared library. */
01166 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
01167 
01168 /* Define to use Sun versioning in the shared library. */
01169 /* #undef _GLIBCXX_SYMVER_SUN */
01170 
01171 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
01172    <stdio.h>, and <stdlib.h> can be used or exposed. */
01173 #define _GLIBCXX_USE_C99 1
01174 
01175 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
01176    compiler builtins for these functions requires corresponding C99 library
01177    functions to be present. */
01178 #define _GLIBCXX_USE_C99_COMPLEX 1
01179 
01180 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
01181    Using compiler builtins for these functions requires corresponding C99
01182    library functions to be present. */
01183 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
01184 
01185 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
01186    namespace std::tr1. */
01187 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
01188 
01189 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
01190    namespace std::tr1. */
01191 #define _GLIBCXX_USE_C99_FENV_TR1 1
01192 
01193 /* Define if C99 functions in <inttypes.h> should be imported in
01194    <tr1/cinttypes> in namespace std::tr1. */
01195 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
01196 
01197 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
01198    <tr1/cinttypes> in namespace std::tr1. */
01199 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
01200 
01201 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01202    in namespace std. */
01203 #define _GLIBCXX_USE_C99_MATH 1
01204 
01205 /* Define if C99 functions or macros in <math.h> should be imported in
01206    <tr1/cmath> in namespace std::tr1. */
01207 #define _GLIBCXX_USE_C99_MATH_TR1 1
01208 
01209 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
01210    namespace std::tr1. */
01211 #define _GLIBCXX_USE_C99_STDINT_TR1 1
01212 
01213 /* Defined if clock_gettime has monotonic clock support. */
01214 /* #undef _GLIBCXX_USE_CLOCK_MONOTONIC */
01215 
01216 /* Defined if clock_gettime has realtime clock support. */
01217 /* #undef _GLIBCXX_USE_CLOCK_REALTIME */
01218 
01219 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
01220    this host. */
01221 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
01222 
01223 /* Defined if gettimeofday is available. */
01224 #define _GLIBCXX_USE_GETTIMEOFDAY 1
01225 
01226 /* Define if LFS support is available. */
01227 #define _GLIBCXX_USE_LFS 1
01228 
01229 /* Define if code specialized for long long should be used. */
01230 #define _GLIBCXX_USE_LONG_LONG 1
01231 
01232 /* Defined if nanosleep is available. */
01233 /* #undef _GLIBCXX_USE_NANOSLEEP */
01234 
01235 /* Define if NLS translations are to be used. */
01236 #define _GLIBCXX_USE_NLS 1
01237 
01238 /* Define if /dev/random and /dev/urandom are available for the random_device
01239    of TR1 (Chapter 5.1). */
01240 #define _GLIBCXX_USE_RANDOM_TR1 1
01241 
01242 /* Defined if sched_yield is available. */
01243 /* #undef _GLIBCXX_USE_SCHED_YIELD */
01244 
01245 /* Define if code specialized for wchar_t should be used. */
01246 #define _GLIBCXX_USE_WCHAR_T 1
01247 
01248 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
01249 # define _GLIBCXX_HAVE_ACOSF 1
01250 # define acosf _acosf
01251 #endif
01252 
01253 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
01254 # define _GLIBCXX_HAVE_ACOSL 1
01255 # define acosl _acosl
01256 #endif
01257 
01258 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
01259 # define _GLIBCXX_HAVE_ASINF 1
01260 # define asinf _asinf
01261 #endif
01262 
01263 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
01264 # define _GLIBCXX_HAVE_ASINL 1
01265 # define asinl _asinl
01266 #endif
01267 
01268 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
01269 # define _GLIBCXX_HAVE_ATAN2F 1
01270 # define atan2f _atan2f
01271 #endif
01272 
01273 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
01274 # define _GLIBCXX_HAVE_ATAN2L 1
01275 # define atan2l _atan2l
01276 #endif
01277 
01278 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
01279 # define _GLIBCXX_HAVE_ATANF 1
01280 # define atanf _atanf
01281 #endif
01282 
01283 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
01284 # define _GLIBCXX_HAVE_ATANL 1
01285 # define atanl _atanl
01286 #endif
01287 
01288 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
01289 # define _GLIBCXX_HAVE_CEILF 1
01290 # define ceilf _ceilf
01291 #endif
01292 
01293 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
01294 # define _GLIBCXX_HAVE_CEILL 1
01295 # define ceill _ceill
01296 #endif
01297 
01298 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
01299 # define _GLIBCXX_HAVE_COSF 1
01300 # define cosf _cosf
01301 #endif
01302 
01303 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
01304 # define _GLIBCXX_HAVE_COSHF 1
01305 # define coshf _coshf
01306 #endif
01307 
01308 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
01309 # define _GLIBCXX_HAVE_COSHL 1
01310 # define coshl _coshl
01311 #endif
01312 
01313 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
01314 # define _GLIBCXX_HAVE_COSL 1
01315 # define cosl _cosl
01316 #endif
01317 
01318 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
01319 # define _GLIBCXX_HAVE_EXPF 1
01320 # define expf _expf
01321 #endif
01322 
01323 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
01324 # define _GLIBCXX_HAVE_EXPL 1
01325 # define expl _expl
01326 #endif
01327 
01328 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
01329 # define _GLIBCXX_HAVE_FABSF 1
01330 # define fabsf _fabsf
01331 #endif
01332 
01333 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
01334 # define _GLIBCXX_HAVE_FABSL 1
01335 # define fabsl _fabsl
01336 #endif
01337 
01338 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
01339 # define _GLIBCXX_HAVE_FINITE 1
01340 # define finite _finite
01341 #endif
01342 
01343 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
01344 # define _GLIBCXX_HAVE_FINITEF 1
01345 # define finitef _finitef
01346 #endif
01347 
01348 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
01349 # define _GLIBCXX_HAVE_FINITEL 1
01350 # define finitel _finitel
01351 #endif
01352 
01353 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
01354 # define _GLIBCXX_HAVE_FLOORF 1
01355 # define floorf _floorf
01356 #endif
01357 
01358 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
01359 # define _GLIBCXX_HAVE_FLOORL 1
01360 # define floorl _floorl
01361 #endif
01362 
01363 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
01364 # define _GLIBCXX_HAVE_FMODF 1
01365 # define fmodf _fmodf
01366 #endif
01367 
01368 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
01369 # define _GLIBCXX_HAVE_FMODL 1
01370 # define fmodl _fmodl
01371 #endif
01372 
01373 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
01374 # define _GLIBCXX_HAVE_FPCLASS 1
01375 # define fpclass _fpclass
01376 #endif
01377 
01378 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
01379 # define _GLIBCXX_HAVE_FREXPF 1
01380 # define frexpf _frexpf
01381 #endif
01382 
01383 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
01384 # define _GLIBCXX_HAVE_FREXPL 1
01385 # define frexpl _frexpl
01386 #endif
01387 
01388 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
01389 # define _GLIBCXX_HAVE_HYPOT 1
01390 # define hypot _hypot
01391 #endif
01392 
01393 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
01394 # define _GLIBCXX_HAVE_HYPOTF 1
01395 # define hypotf _hypotf
01396 #endif
01397 
01398 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
01399 # define _GLIBCXX_HAVE_HYPOTL 1
01400 # define hypotl _hypotl
01401 #endif
01402 
01403 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
01404 # define _GLIBCXX_HAVE_ISINF 1
01405 # define isinf _isinf
01406 #endif
01407 
01408 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
01409 # define _GLIBCXX_HAVE_ISINFF 1
01410 # define isinff _isinff
01411 #endif
01412 
01413 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
01414 # define _GLIBCXX_HAVE_ISINFL 1
01415 # define isinfl _isinfl
01416 #endif
01417 
01418 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
01419 # define _GLIBCXX_HAVE_ISNAN 1
01420 # define isnan _isnan
01421 #endif
01422 
01423 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
01424 # define _GLIBCXX_HAVE_ISNANF 1
01425 # define isnanf _isnanf
01426 #endif
01427 
01428 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01429 # define _GLIBCXX_HAVE_ISNANL 1
01430 # define isnanl _isnanl
01431 #endif
01432 
01433 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01434 # define _GLIBCXX_HAVE_LDEXPF 1
01435 # define ldexpf _ldexpf
01436 #endif
01437 
01438 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01439 # define _GLIBCXX_HAVE_LDEXPL 1
01440 # define ldexpl _ldexpl
01441 #endif
01442 
01443 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01444 # define _GLIBCXX_HAVE_LOG10F 1
01445 # define log10f _log10f
01446 #endif
01447 
01448 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01449 # define _GLIBCXX_HAVE_LOG10L 1
01450 # define log10l _log10l
01451 #endif
01452 
01453 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01454 # define _GLIBCXX_HAVE_LOGF 1
01455 # define logf _logf
01456 #endif
01457 
01458 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01459 # define _GLIBCXX_HAVE_LOGL 1
01460 # define logl _logl
01461 #endif
01462 
01463 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01464 # define _GLIBCXX_HAVE_MODF 1
01465 # define modf _modf
01466 #endif
01467 
01468 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
01469 # define _GLIBCXX_HAVE_MODFF 1
01470 # define modff _modff
01471 #endif
01472 
01473 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
01474 # define _GLIBCXX_HAVE_MODFL 1
01475 # define modfl _modfl
01476 #endif
01477 
01478 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01479 # define _GLIBCXX_HAVE_POWF 1
01480 # define powf _powf
01481 #endif
01482 
01483 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01484 # define _GLIBCXX_HAVE_POWL 1
01485 # define powl _powl
01486 #endif
01487 
01488 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01489 # define _GLIBCXX_HAVE_QFPCLASS 1
01490 # define qfpclass _qfpclass
01491 #endif
01492 
01493 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01494 # define _GLIBCXX_HAVE_SINCOS 1
01495 # define sincos _sincos
01496 #endif
01497 
01498 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01499 # define _GLIBCXX_HAVE_SINCOSF 1
01500 # define sincosf _sincosf
01501 #endif
01502 
01503 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01504 # define _GLIBCXX_HAVE_SINCOSL 1
01505 # define sincosl _sincosl
01506 #endif
01507 
01508 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01509 # define _GLIBCXX_HAVE_SINF 1
01510 # define sinf _sinf
01511 #endif
01512 
01513 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01514 # define _GLIBCXX_HAVE_SINHF 1
01515 # define sinhf _sinhf
01516 #endif
01517 
01518 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01519 # define _GLIBCXX_HAVE_SINHL 1
01520 # define sinhl _sinhl
01521 #endif
01522 
01523 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01524 # define _GLIBCXX_HAVE_SINL 1
01525 # define sinl _sinl
01526 #endif
01527 
01528 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01529 # define _GLIBCXX_HAVE_SQRTF 1
01530 # define sqrtf _sqrtf
01531 #endif
01532 
01533 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01534 # define _GLIBCXX_HAVE_SQRTL 1
01535 # define sqrtl _sqrtl
01536 #endif
01537 
01538 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01539 # define _GLIBCXX_HAVE_STRTOF 1
01540 # define strtof _strtof
01541 #endif
01542 
01543 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01544 # define _GLIBCXX_HAVE_STRTOLD 1
01545 # define strtold _strtold
01546 #endif
01547 
01548 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01549 # define _GLIBCXX_HAVE_TANF 1
01550 # define tanf _tanf
01551 #endif
01552 
01553 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01554 # define _GLIBCXX_HAVE_TANHF 1
01555 # define tanhf _tanhf
01556 #endif
01557 
01558 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01559 # define _GLIBCXX_HAVE_TANHL 1
01560 # define tanhl _tanhl
01561 #endif
01562 
01563 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01564 # define _GLIBCXX_HAVE_TANL 1
01565 # define tanl _tanl
01566 #endif
01567 
01568 #endif // _GLIBCXX_CXX_CONFIG_H