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