c++config.h

00001 // Predefined symbols and macros -*- C++ -*-
00002 
00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
00004 // 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 2, 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 // You should have received a copy of the GNU General Public License along
00018 // with this library; see the file COPYING.  If not, write to the Free
00019 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
00020 // USA.
00021 
00022 // As a special exception, you may use this file as part of a free software
00023 // library without restriction.  Specifically, if other files instantiate
00024 // templates or use macros or inline functions from this file, or you compile
00025 // this file and link it with other files to produce an executable, this
00026 // file does not by itself cause the resulting executable to be covered by
00027 // the GNU General Public License.  This exception does not however
00028 // invalidate any other reasons why the executable file might be covered by
00029 // the GNU General Public License.
00030 
00031 #ifndef _CXXCONFIG
00032 #define _CXXCONFIG 1
00033 
00034 // Pick up any OS-specific definitions.
00035 #include <bits/os_defines.h>
00036 
00037 // Pick up any CPU-specific definitions.
00038 #include <bits/cpu_defines.h>
00039 
00040 // Debug mode support. Debug mode basic_string is not allowed to be
00041 // associated with std, because of locale and exception link
00042 // dependence.
00043 namespace __gnu_debug_def { }
00044 
00045 namespace __gnu_debug 
00046 { 
00047   using namespace __gnu_debug_def;
00048 }
00049 
00050 #ifdef _GLIBCXX_DEBUG
00051 # define _GLIBCXX_STD __gnu_norm
00052 # define _GLIBCXX_EXTERN_TEMPLATE 0
00053 namespace __gnu_norm 
00054 { 
00055   using namespace std; 
00056 }
00057 namespace std
00058 {
00059   using namespace __gnu_debug_def __attribute__ ((strong));
00060 }
00061 # if __NO_INLINE__ && !__GXX_WEAK__
00062 #  warning debug mode without inlining may fail due to lack of weak symbols
00063 # endif
00064 #else
00065 # define _GLIBCXX_STD std
00066 #endif
00067 
00068 // Allow use of "export template." This is currently not a feature
00069 // that g++ supports.
00070 // #define _GLIBCXX_EXPORT_TEMPLATE 1
00071 
00072 // Allow use of the GNU syntax extension, "extern template." This
00073 // extension is fully documented in the g++ manual, but in a nutshell,
00074 // it inhibits all implicit instantiations and is used throughout the
00075 // library to avoid multiple weak definitions for required types that
00076 // are already explicitly instantiated in the library binary. This
00077 // substantially reduces the binary size of resulting executables.
00078 #ifndef _GLIBCXX_EXTERN_TEMPLATE
00079 # define _GLIBCXX_EXTERN_TEMPLATE 1
00080 #endif
00081 
00082 // Certain function definitions that are meant to be overridable from
00083 // user code are decorated with this macro.  For some targets, this
00084 // macro causes these definitions to be weak.
00085 #ifndef _GLIBCXX_WEAK_DEFINITION
00086 # define _GLIBCXX_WEAK_DEFINITION
00087 #endif
00088 
00089 // The remainder of the prewritten config is automatic; all the
00090 // user hooks are listed above.
00091 
00092 // Create a boolean flag to be used to determine if --fast-math is set.
00093 #ifdef __FAST_MATH__
00094 # define _GLIBCXX_FAST_MATH 1
00095 #else
00096 # define _GLIBCXX_FAST_MATH 0
00097 #endif
00098 
00099 // This marks string literals in header files to be extracted for eventual
00100 // translation.  It is primarily used for messages in thrown exceptions; see
00101 // src/functexcept.cc.  We use __N because the more traditional _N is used
00102 // for something else under certain OSes (see BADNAMES).
00103 #define __N(msgid)     (msgid)
00104 
00105 // End of prewritten config; the discovered settings follow.
00106 #define __GLIBCXX__ 20071101
00107 /* config.h.  Generated by configure.  */
00108 /* config.h.in.  Generated from configure.ac by autoheader.  */
00109 
00110 /* Define to 1 if you have the `acosf' function. */
00111 #define _GLIBCXX_HAVE_ACOSF 1
00112 
00113 /* Define to 1 if you have the `acosl' function. */
00114 #define _GLIBCXX_HAVE_ACOSL 1
00115 
00116 /* Define to 1 if you have the `asinf' function. */
00117 #define _GLIBCXX_HAVE_ASINF 1
00118 
00119 /* Define to 1 if you have the `asinl' function. */
00120 #define _GLIBCXX_HAVE_ASINL 1
00121 
00122 /* Define to 1 if you have the `atan2f' function. */
00123 #define _GLIBCXX_HAVE_ATAN2F 1
00124 
00125 /* Define to 1 if you have the `atan2l' function. */
00126 #define _GLIBCXX_HAVE_ATAN2L 1
00127 
00128 /* Define to 1 if you have the `atanf' function. */
00129 #define _GLIBCXX_HAVE_ATANF 1
00130 
00131 /* Define to 1 if you have the `atanl' function. */
00132 #define _GLIBCXX_HAVE_ATANL 1
00133 
00134 /* Define to 1 if you have the `ceilf' function. */
00135 #define _GLIBCXX_HAVE_CEILF 1
00136 
00137 /* Define to 1 if you have the `ceill' function. */
00138 #define _GLIBCXX_HAVE_CEILL 1
00139 
00140 /* Define to 1 if you have the <complex.h> header file. */
00141 #define _GLIBCXX_HAVE_COMPLEX_H 1
00142 
00143 /* Define to 1 if you have the `copysign' function. */
00144 #define _GLIBCXX_HAVE_COPYSIGN 1
00145 
00146 /* Define to 1 if you have the `copysignf' function. */
00147 #define _GLIBCXX_HAVE_COPYSIGNF 1
00148 
00149 /* Define to 1 if you have the `copysignl' function. */
00150 #define _GLIBCXX_HAVE_COPYSIGNL 1
00151 
00152 /* Define to 1 if you have the `cosf' function. */
00153 #define _GLIBCXX_HAVE_COSF 1
00154 
00155 /* Define to 1 if you have the `coshf' function. */
00156 #define _GLIBCXX_HAVE_COSHF 1
00157 
00158 /* Define to 1 if you have the `coshl' function. */
00159 #define _GLIBCXX_HAVE_COSHL 1
00160 
00161 /* Define to 1 if you have the `cosl' function. */
00162 #define _GLIBCXX_HAVE_COSL 1
00163 
00164 /* Define to 1 if you have the <endian.h> header file. */
00165 #define _GLIBCXX_HAVE_ENDIAN_H 1
00166 
00167 /* Define to 1 if you have the `expf' function. */
00168 #define _GLIBCXX_HAVE_EXPF 1
00169 
00170 /* Define to 1 if you have the `expl' function. */
00171 #define _GLIBCXX_HAVE_EXPL 1
00172 
00173 /* Define to 1 if you have the `fabsf' function. */
00174 #define _GLIBCXX_HAVE_FABSF 1
00175 
00176 /* Define to 1 if you have the `fabsl' function. */
00177 #define _GLIBCXX_HAVE_FABSL 1
00178 
00179 /* Define to 1 if you have the `finite' function. */
00180 #define _GLIBCXX_HAVE_FINITE 1
00181 
00182 /* Define to 1 if you have the `finitef' function. */
00183 #define _GLIBCXX_HAVE_FINITEF 1
00184 
00185 /* Define to 1 if you have the `finitel' function. */
00186 #define _GLIBCXX_HAVE_FINITEL 1
00187 
00188 /* Define to 1 if you have the <float.h> header file. */
00189 #define _GLIBCXX_HAVE_FLOAT_H 1
00190 
00191 /* Define to 1 if you have the `floorf' function. */
00192 #define _GLIBCXX_HAVE_FLOORF 1
00193 
00194 /* Define to 1 if you have the `floorl' function. */
00195 #define _GLIBCXX_HAVE_FLOORL 1
00196 
00197 /* Define to 1 if you have the `fmodf' function. */
00198 #define _GLIBCXX_HAVE_FMODF 1
00199 
00200 /* Define to 1 if you have the `fmodl' function. */
00201 #define _GLIBCXX_HAVE_FMODL 1
00202 
00203 /* Define to 1 if you have the `fpclass' function. */
00204 /* #undef _GLIBCXX_HAVE_FPCLASS */
00205 
00206 /* Define to 1 if you have the <fp.h> header file. */
00207 /* #undef _GLIBCXX_HAVE_FP_H */
00208 
00209 /* Define to 1 if you have the `frexpf' function. */
00210 #define _GLIBCXX_HAVE_FREXPF 1
00211 
00212 /* Define to 1 if you have the `frexpl' function. */
00213 #define _GLIBCXX_HAVE_FREXPL 1
00214 
00215 /* Define to 1 if you have the <gconv.h> header file. */
00216 #define _GLIBCXX_HAVE_GCONV_H 1
00217 
00218 /* Define to 1 if you have the `getpagesize' function. */
00219 #define _GLIBCXX_HAVE_GETPAGESIZE 1
00220 
00221 /* Define if gthr-default.h exists (meaning that threading support is
00222    enabled). */
00223 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
00224 
00225 /* Define to 1 if you have the `hypot' function. */
00226 #define _GLIBCXX_HAVE_HYPOT 1
00227 
00228 /* Define to 1 if you have the `hypotf' function. */
00229 #define _GLIBCXX_HAVE_HYPOTF 1
00230 
00231 /* Define to 1 if you have the `hypotl' function. */
00232 #define _GLIBCXX_HAVE_HYPOTL 1
00233 
00234 /* Define to 1 if you have the `iconv' function. */
00235 #define _GLIBCXX_HAVE_ICONV 1
00236 
00237 /* Define to 1 if you have the `iconv_close' function. */
00238 #define _GLIBCXX_HAVE_ICONV_CLOSE 1
00239 
00240 /* Define to 1 if you have the `iconv_open' function. */
00241 #define _GLIBCXX_HAVE_ICONV_OPEN 1
00242 
00243 /* Define to 1 if you have the <ieeefp.h> header file. */
00244 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00245 
00246 /* Define if int64_t is available in <stdint.h>. */
00247 #define _GLIBCXX_HAVE_INT64_T 1
00248 
00249 /* Define to 1 if you have the <inttypes.h> header file. */
00250 #define _GLIBCXX_HAVE_INTTYPES_H 1
00251 
00252 /* Define to 1 if you have the `isinf' function. */
00253 #define _GLIBCXX_HAVE_ISINF 1
00254 
00255 /* Define to 1 if you have the `isinff' function. */
00256 #define _GLIBCXX_HAVE_ISINFF 1
00257 
00258 /* Define to 1 if you have the `isinfl' function. */
00259 #define _GLIBCXX_HAVE_ISINFL 1
00260 
00261 /* Define to 1 if you have the `isnan' function. */
00262 #define _GLIBCXX_HAVE_ISNAN 1
00263 
00264 /* Define to 1 if you have the `isnanf' function. */
00265 #define _GLIBCXX_HAVE_ISNANF 1
00266 
00267 /* Define to 1 if you have the `isnanl' function. */
00268 #define _GLIBCXX_HAVE_ISNANL 1
00269 
00270 /* Defined if iswblank exists. */
00271 #define _GLIBCXX_HAVE_ISWBLANK 1
00272 
00273 /* Define if LC_MESSAGES is available in <locale.h>. */
00274 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00275 
00276 /* Define to 1 if you have the `ldexpf' function. */
00277 #define _GLIBCXX_HAVE_LDEXPF 1
00278 
00279 /* Define to 1 if you have the `ldexpl' function. */
00280 #define _GLIBCXX_HAVE_LDEXPL 1
00281 
00282 /* Define to 1 if you have the <libintl.h> header file. */
00283 #define _GLIBCXX_HAVE_LIBINTL_H 1
00284 
00285 /* Define to 1 if you have the `m' library (-lm). */
00286 #define _GLIBCXX_HAVE_LIBM 1
00287 
00288 /* Only used in build directory testsuite_hooks.h. */
00289 #define _GLIBCXX_HAVE_LIMIT_AS 1
00290 
00291 /* Only used in build directory testsuite_hooks.h. */
00292 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00293 
00294 /* Only used in build directory testsuite_hooks.h. */
00295 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00296 
00297 /* Only used in build directory testsuite_hooks.h. */
00298 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00299 
00300 /* Only used in build directory testsuite_hooks.h. */
00301 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00302 
00303 /* Define to 1 if you have the <locale.h> header file. */
00304 #define _GLIBCXX_HAVE_LOCALE_H 1
00305 
00306 /* Define to 1 if you have the `log10f' function. */
00307 #define _GLIBCXX_HAVE_LOG10F 1
00308 
00309 /* Define to 1 if you have the `log10l' function. */
00310 #define _GLIBCXX_HAVE_LOG10L 1
00311 
00312 /* Define to 1 if you have the `logf' function. */
00313 #define _GLIBCXX_HAVE_LOGF 1
00314 
00315 /* Define to 1 if you have the `logl' function. */
00316 #define _GLIBCXX_HAVE_LOGL 1
00317 
00318 /* Define to 1 if you have the <machine/endian.h> header file. */
00319 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00320 
00321 /* Define to 1 if you have the <machine/param.h> header file. */
00322 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00323 
00324 /* Define if mbstate_t exists in wchar.h. */
00325 #define _GLIBCXX_HAVE_MBSTATE_T 1
00326 
00327 /* Define to 1 if you have the <memory.h> header file. */
00328 #define _GLIBCXX_HAVE_MEMORY_H 1
00329 
00330 /* Define to 1 if you have a working `mmap' system call. */
00331 #define _GLIBCXX_HAVE_MMAP 1
00332 
00333 /* Define to 1 if you have the `modf' function. */
00334 #define _GLIBCXX_HAVE_MODF 1
00335 
00336 /* Define to 1 if you have the `modff' function. */
00337 #define _GLIBCXX_HAVE_MODFF 1
00338 
00339 /* Define to 1 if you have the `modfl' function. */
00340 #define _GLIBCXX_HAVE_MODFL 1
00341 
00342 /* Define to 1 if you have the <nan.h> header file. */
00343 /* #undef _GLIBCXX_HAVE_NAN_H */
00344 
00345 /* Define to 1 if you have the `nl_langinfo' function. */
00346 #define _GLIBCXX_HAVE_NL_LANGINFO 1
00347 
00348 /* Define if poll is available in <poll.h>. */
00349 #define _GLIBCXX_HAVE_POLL 1
00350 
00351 /* Define to 1 if you have the `powf' function. */
00352 #define _GLIBCXX_HAVE_POWF 1
00353 
00354 /* Define to 1 if you have the `powl' function. */
00355 #define _GLIBCXX_HAVE_POWL 1
00356 
00357 /* Define to 1 if you have the `qfpclass' function. */
00358 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00359 
00360 /* Define to 1 if you have the `setenv' function. */
00361 #define _GLIBCXX_HAVE_SETENV 1
00362 
00363 /* Define if sigsetjmp is available. */
00364 #define _GLIBCXX_HAVE_SIGSETJMP 1
00365 
00366 /* Define to 1 if you have the `sincos' function. */
00367 #define _GLIBCXX_HAVE_SINCOS 1
00368 
00369 /* Define to 1 if you have the `sincosf' function. */
00370 #define _GLIBCXX_HAVE_SINCOSF 1
00371 
00372 /* Define to 1 if you have the `sincosl' function. */
00373 #define _GLIBCXX_HAVE_SINCOSL 1
00374 
00375 /* Define to 1 if you have the `sinf' function. */
00376 #define _GLIBCXX_HAVE_SINF 1
00377 
00378 /* Define to 1 if you have the `sinhf' function. */
00379 #define _GLIBCXX_HAVE_SINHF 1
00380 
00381 /* Define to 1 if you have the `sinhl' function. */
00382 #define _GLIBCXX_HAVE_SINHL 1
00383 
00384 /* Define to 1 if you have the `sinl' function. */
00385 #define _GLIBCXX_HAVE_SINL 1
00386 
00387 /* Define to 1 if you have the `sqrtf' function. */
00388 #define _GLIBCXX_HAVE_SQRTF 1
00389 
00390 /* Define to 1 if you have the `sqrtl' function. */
00391 #define _GLIBCXX_HAVE_SQRTL 1
00392 
00393 /* Define to 1 if you have the <stdint.h> header file. */
00394 #define _GLIBCXX_HAVE_STDINT_H 1
00395 
00396 /* Define to 1 if you have the <stdlib.h> header file. */
00397 #define _GLIBCXX_HAVE_STDLIB_H 1
00398 
00399 /* Define to 1 if you have the <strings.h> header file. */
00400 #define _GLIBCXX_HAVE_STRINGS_H 1
00401 
00402 /* Define to 1 if you have the <string.h> header file. */
00403 #define _GLIBCXX_HAVE_STRING_H 1
00404 
00405 /* Define to 1 if you have the `strtof' function. */
00406 #define _GLIBCXX_HAVE_STRTOF 1
00407 
00408 /* Define to 1 if you have the `strtold' function. */
00409 #define _GLIBCXX_HAVE_STRTOLD 1
00410 
00411 /* Define to 1 if you have the <sys/filio.h> header file. */
00412 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
00413 
00414 /* Define to 1 if you have the <sys/ioctl.h> header file. */
00415 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
00416 
00417 /* Define to 1 if you have the <sys/ipc.h> header file. */
00418 #define _GLIBCXX_HAVE_SYS_IPC_H 1
00419 
00420 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
00421 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
00422 
00423 /* Define to 1 if you have the <sys/machine.h> header file. */
00424 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
00425 
00426 /* Define to 1 if you have the <sys/param.h> header file. */
00427 /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */
00428 
00429 /* Define to 1 if you have the <sys/resource.h> header file. */
00430 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
00431 
00432 /* Define to 1 if you have the <sys/sem.h> header file. */
00433 #define _GLIBCXX_HAVE_SYS_SEM_H 1
00434 
00435 /* Define to 1 if you have the <sys/stat.h> header file. */
00436 #define _GLIBCXX_HAVE_SYS_STAT_H 1
00437 
00438 /* Define to 1 if you have the <sys/time.h> header file. */
00439 #define _GLIBCXX_HAVE_SYS_TIME_H 1
00440 
00441 /* Define to 1 if you have the <sys/types.h> header file. */
00442 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
00443 
00444 /* Define to 1 if you have the <sys/uio.h> header file. */
00445 #define _GLIBCXX_HAVE_SYS_UIO_H 1
00446 
00447 /* Define if S_IFREG is available in <sys/stat.h>. */
00448 /* #undef _GLIBCXX_HAVE_S_IFREG */
00449 
00450 /* Define if S_IFREG is available in <sys/stat.h>. */
00451 #define _GLIBCXX_HAVE_S_ISREG 1
00452 
00453 /* Define to 1 if you have the `tanf' function. */
00454 #define _GLIBCXX_HAVE_TANF 1
00455 
00456 /* Define to 1 if you have the `tanhf' function. */
00457 #define _GLIBCXX_HAVE_TANHF 1
00458 
00459 /* Define to 1 if you have the `tanhl' function. */
00460 #define _GLIBCXX_HAVE_TANHL 1
00461 
00462 /* Define to 1 if you have the `tanl' function. */
00463 #define _GLIBCXX_HAVE_TANL 1
00464 
00465 /* Define to 1 if the target supports thread-local storage. */
00466 #define _GLIBCXX_HAVE_TLS 1
00467 
00468 /* Define to 1 if you have the <unistd.h> header file. */
00469 #define _GLIBCXX_HAVE_UNISTD_H 1
00470 
00471 /* Defined if vfwscanf exists. */
00472 #define _GLIBCXX_HAVE_VFWSCANF 1
00473 
00474 /* Defined if vswscanf exists. */
00475 #define _GLIBCXX_HAVE_VSWSCANF 1
00476 
00477 /* Defined if vwscanf exists. */
00478 #define _GLIBCXX_HAVE_VWSCANF 1
00479 
00480 /* Define to 1 if you have the <wchar.h> header file. */
00481 #define _GLIBCXX_HAVE_WCHAR_H 1
00482 
00483 /* Defined if wcstof exists. */
00484 #define _GLIBCXX_HAVE_WCSTOF 1
00485 
00486 /* Define to 1 if you have the <wctype.h> header file. */
00487 #define _GLIBCXX_HAVE_WCTYPE_H 1
00488 
00489 /* Define if writev is available in <sys/uio.h>. */
00490 #define _GLIBCXX_HAVE_WRITEV 1
00491 
00492 /* Define to 1 if you have the `_acosf' function. */
00493 /* #undef _GLIBCXX_HAVE__ACOSF */
00494 
00495 /* Define to 1 if you have the `_acosl' function. */
00496 /* #undef _GLIBCXX_HAVE__ACOSL */
00497 
00498 /* Define to 1 if you have the `_asinf' function. */
00499 /* #undef _GLIBCXX_HAVE__ASINF */
00500 
00501 /* Define to 1 if you have the `_asinl' function. */
00502 /* #undef _GLIBCXX_HAVE__ASINL */
00503 
00504 /* Define to 1 if you have the `_atan2f' function. */
00505 /* #undef _GLIBCXX_HAVE__ATAN2F */
00506 
00507 /* Define to 1 if you have the `_atan2l' function. */
00508 /* #undef _GLIBCXX_HAVE__ATAN2L */
00509 
00510 /* Define to 1 if you have the `_atanf' function. */
00511 /* #undef _GLIBCXX_HAVE__ATANF */
00512 
00513 /* Define to 1 if you have the `_atanl' function. */
00514 /* #undef _GLIBCXX_HAVE__ATANL */
00515 
00516 /* Define to 1 if you have the `_ceilf' function. */
00517 /* #undef _GLIBCXX_HAVE__CEILF */
00518 
00519 /* Define to 1 if you have the `_ceill' function. */
00520 /* #undef _GLIBCXX_HAVE__CEILL */
00521 
00522 /* Define to 1 if you have the `_copysign' function. */
00523 /* #undef _GLIBCXX_HAVE__COPYSIGN */
00524 
00525 /* Define to 1 if you have the `_copysignl' function. */
00526 /* #undef _GLIBCXX_HAVE__COPYSIGNL */
00527 
00528 /* Define to 1 if you have the `_cosf' function. */
00529 /* #undef _GLIBCXX_HAVE__COSF */
00530 
00531 /* Define to 1 if you have the `_coshf' function. */
00532 /* #undef _GLIBCXX_HAVE__COSHF */
00533 
00534 /* Define to 1 if you have the `_coshl' function. */
00535 /* #undef _GLIBCXX_HAVE__COSHL */
00536 
00537 /* Define to 1 if you have the `_cosl' function. */
00538 /* #undef _GLIBCXX_HAVE__COSL */
00539 
00540 /* Define to 1 if you have the `_expf' function. */
00541 /* #undef _GLIBCXX_HAVE__EXPF */
00542 
00543 /* Define to 1 if you have the `_expl' function. */
00544 /* #undef _GLIBCXX_HAVE__EXPL */
00545 
00546 /* Define to 1 if you have the `_fabsf' function. */
00547 /* #undef _GLIBCXX_HAVE__FABSF */
00548 
00549 /* Define to 1 if you have the `_fabsl' function. */
00550 /* #undef _GLIBCXX_HAVE__FABSL */
00551 
00552 /* Define to 1 if you have the `_finite' function. */
00553 /* #undef _GLIBCXX_HAVE__FINITE */
00554 
00555 /* Define to 1 if you have the `_finitef' function. */
00556 /* #undef _GLIBCXX_HAVE__FINITEF */
00557 
00558 /* Define to 1 if you have the `_finitel' function. */
00559 /* #undef _GLIBCXX_HAVE__FINITEL */
00560 
00561 /* Define to 1 if you have the `_floorf' function. */
00562 /* #undef _GLIBCXX_HAVE__FLOORF */
00563 
00564 /* Define to 1 if you have the `_floorl' function. */
00565 /* #undef _GLIBCXX_HAVE__FLOORL */
00566 
00567 /* Define to 1 if you have the `_fmodf' function. */
00568 /* #undef _GLIBCXX_HAVE__FMODF */
00569 
00570 /* Define to 1 if you have the `_fmodl' function. */
00571 /* #undef _GLIBCXX_HAVE__FMODL */
00572 
00573 /* Define to 1 if you have the `_fpclass' function. */
00574 /* #undef _GLIBCXX_HAVE__FPCLASS */
00575 
00576 /* Define to 1 if you have the `_frexpf' function. */
00577 /* #undef _GLIBCXX_HAVE__FREXPF */
00578 
00579 /* Define to 1 if you have the `_frexpl' function. */
00580 /* #undef _GLIBCXX_HAVE__FREXPL */
00581 
00582 /* Define to 1 if you have the `_hypot' function. */
00583 /* #undef _GLIBCXX_HAVE__HYPOT */
00584 
00585 /* Define to 1 if you have the `_hypotf' function. */
00586 /* #undef _GLIBCXX_HAVE__HYPOTF */
00587 
00588 /* Define to 1 if you have the `_hypotl' function. */
00589 /* #undef _GLIBCXX_HAVE__HYPOTL */
00590 
00591 /* Define to 1 if you have the `_isinf' function. */
00592 /* #undef _GLIBCXX_HAVE__ISINF */
00593 
00594 /* Define to 1 if you have the `_isinff' function. */
00595 /* #undef _GLIBCXX_HAVE__ISINFF */
00596 
00597 /* Define to 1 if you have the `_isinfl' function. */
00598 /* #undef _GLIBCXX_HAVE__ISINFL */
00599 
00600 /* Define to 1 if you have the `_isnan' function. */
00601 /* #undef _GLIBCXX_HAVE__ISNAN */
00602 
00603 /* Define to 1 if you have the `_isnanf' function. */
00604 /* #undef _GLIBCXX_HAVE__ISNANF */
00605 
00606 /* Define to 1 if you have the `_isnanl' function. */
00607 /* #undef _GLIBCXX_HAVE__ISNANL */
00608 
00609 /* Define to 1 if you have the `_ldexpf' function. */
00610 /* #undef _GLIBCXX_HAVE__LDEXPF */
00611 
00612 /* Define to 1 if you have the `_ldexpl' function. */
00613 /* #undef _GLIBCXX_HAVE__LDEXPL */
00614 
00615 /* Define to 1 if you have the `_log10f' function. */
00616 /* #undef _GLIBCXX_HAVE__LOG10F */
00617 
00618 /* Define to 1 if you have the `_log10l' function. */
00619 /* #undef _GLIBCXX_HAVE__LOG10L */
00620 
00621 /* Define to 1 if you have the `_logf' function. */
00622 /* #undef _GLIBCXX_HAVE__LOGF */
00623 
00624 /* Define to 1 if you have the `_logl' function. */
00625 /* #undef _GLIBCXX_HAVE__LOGL */
00626 
00627 /* Define to 1 if you have the `_modf' function. */
00628 /* #undef _GLIBCXX_HAVE__MODF */
00629 
00630 /* Define to 1 if you have the `_modff' function. */
00631 /* #undef _GLIBCXX_HAVE__MODFF */
00632 
00633 /* Define to 1 if you have the `_modfl' function. */
00634 /* #undef _GLIBCXX_HAVE__MODFL */
00635 
00636 /* Define to 1 if you have the `_powf' function. */
00637 /* #undef _GLIBCXX_HAVE__POWF */
00638 
00639 /* Define to 1 if you have the `_powl' function. */
00640 /* #undef _GLIBCXX_HAVE__POWL */
00641 
00642 /* Define to 1 if you have the `_qfpclass' function. */
00643 /* #undef _GLIBCXX_HAVE__QFPCLASS */
00644 
00645 /* Define to 1 if you have the `_sincos' function. */
00646 /* #undef _GLIBCXX_HAVE__SINCOS */
00647 
00648 /* Define to 1 if you have the `_sincosf' function. */
00649 /* #undef _GLIBCXX_HAVE__SINCOSF */
00650 
00651 /* Define to 1 if you have the `_sincosl' function. */
00652 /* #undef _GLIBCXX_HAVE__SINCOSL */
00653 
00654 /* Define to 1 if you have the `_sinf' function. */
00655 /* #undef _GLIBCXX_HAVE__SINF */
00656 
00657 /* Define to 1 if you have the `_sinhf' function. */
00658 /* #undef _GLIBCXX_HAVE__SINHF */
00659 
00660 /* Define to 1 if you have the `_sinhl' function. */
00661 /* #undef _GLIBCXX_HAVE__SINHL */
00662 
00663 /* Define to 1 if you have the `_sinl' function. */
00664 /* #undef _GLIBCXX_HAVE__SINL */
00665 
00666 /* Define to 1 if you have the `_sqrtf' function. */
00667 /* #undef _GLIBCXX_HAVE__SQRTF */
00668 
00669 /* Define to 1 if you have the `_sqrtl' function. */
00670 /* #undef _GLIBCXX_HAVE__SQRTL */
00671 
00672 /* Define to 1 if you have the `_tanf' function. */
00673 /* #undef _GLIBCXX_HAVE__TANF */
00674 
00675 /* Define to 1 if you have the `_tanhf' function. */
00676 /* #undef _GLIBCXX_HAVE__TANHF */
00677 
00678 /* Define to 1 if you have the `_tanhl' function. */
00679 /* #undef _GLIBCXX_HAVE__TANHL */
00680 
00681 /* Define to 1 if you have the `_tanl' function. */
00682 /* #undef _GLIBCXX_HAVE__TANL */
00683 
00684 /* Define if the compiler/host combination has __builtin_abs. */
00685 #define _GLIBCXX_HAVE___BUILTIN_ABS 1
00686 
00687 /* Define if the compiler/host combination has __builtin_cos. */
00688 #define _GLIBCXX_HAVE___BUILTIN_COS 1
00689 
00690 /* Define if the compiler/host combination has __builtin_cosf. */
00691 #define _GLIBCXX_HAVE___BUILTIN_COSF 1
00692 
00693 /* Define if the compiler/host combination has __builtin_cosl. */
00694 #define _GLIBCXX_HAVE___BUILTIN_COSL 1
00695 
00696 /* Define if the compiler/host combination has __builtin_fabs. */
00697 #define _GLIBCXX_HAVE___BUILTIN_FABS 1
00698 
00699 /* Define if the compiler/host combination has __builtin_fabsf. */
00700 #define _GLIBCXX_HAVE___BUILTIN_FABSF 1
00701 
00702 /* Define if the compiler/host combination has __builtin_fabsl. */
00703 #define _GLIBCXX_HAVE___BUILTIN_FABSL 1
00704 
00705 /* Define if the compiler/host combination has __builtin_labs. */
00706 #define _GLIBCXX_HAVE___BUILTIN_LABS 1
00707 
00708 /* Define if the compiler/host combination has __builtin_sin. */
00709 #define _GLIBCXX_HAVE___BUILTIN_SIN 1
00710 
00711 /* Define if the compiler/host combination has __builtin_sinf. */
00712 #define _GLIBCXX_HAVE___BUILTIN_SINF 1
00713 
00714 /* Define if the compiler/host combination has __builtin_sinl. */
00715 #define _GLIBCXX_HAVE___BUILTIN_SINL 1
00716 
00717 /* Define if the compiler/host combination has __builtin_sqrt. */
00718 #define _GLIBCXX_HAVE___BUILTIN_SQRT 1
00719 
00720 /* Define if the compiler/host combination has __builtin_sqrtf. */
00721 #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1
00722 
00723 /* Define if the compiler/host combination has __builtin_sqrtl. */
00724 #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1
00725 
00726 /* Define to 1 if you have the `__signbit' function. */
00727 #define _GLIBCXX_HAVE___SIGNBIT 1
00728 
00729 /* Define to 1 if you have the `__signbitf' function. */
00730 #define _GLIBCXX_HAVE___SIGNBITF 1
00731 
00732 /* Define to 1 if you have the `__signbitl' function. */
00733 #define _GLIBCXX_HAVE___SIGNBITL 1
00734 
00735 /* Name of package */
00736 /* #undef _GLIBCXX_PACKAGE */
00737 
00738 /* Define to the address where bug reports for this package should be sent. */
00739 #define _GLIBCXX_PACKAGE_BUGREPORT ""
00740 
00741 /* Define to the full name of this package. */
00742 #define _GLIBCXX_PACKAGE_NAME "package-unused"
00743 
00744 /* Define to the full name and version of this package. */
00745 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
00746 
00747 /* Define to the one symbol short name of this package. */
00748 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
00749 
00750 /* Define to the version of this package. */
00751 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
00752 
00753 /* Define to 1 if you have the ANSI C header files. */
00754 #define STDC_HEADERS 1
00755 
00756 /* Version number of package */
00757 /* #undef _GLIBCXX_VERSION */
00758 
00759 /* Define to use concept checking code from the boost libraries. */
00760 /* #undef _GLIBCXX_CONCEPT_CHECKS */
00761 
00762 /* Define if a fully dynamic basic_string is wanted. */
00763 /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
00764 
00765 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
00766 #define _GLIBCXX_HOSTED 1
00767 
00768 /* Define if ptrdiff_t is int. */
00769 #define _GLIBCXX_PTRDIFF_T_IS_INT 1
00770 
00771 /* Define if using setrlimit to set resource limits during "make check" */
00772 #define _GLIBCXX_RES_LIMITS 1
00773 
00774 /* Define if size_t is unsigned int. */
00775 #define _GLIBCXX_SIZE_T_IS_UINT 1
00776 
00777 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
00778 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
00779 
00780 /* Define to use GNU symbol versioning in the shared library. */
00781 #define _GLIBCXX_SYMVER 1
00782 
00783 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
00784    <stdio.h>, and <stdlib.h> can be used or exposed. */
00785 #define _GLIBCXX_USE_C99 1
00786 
00787 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
00788    compiler builtins for these functions requires corresponding C99 library
00789    functions to be present. */
00790 #define _GLIBCXX_USE_C99_COMPLEX 1
00791 
00792 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
00793    in namespace std. */
00794 #define _GLIBCXX_USE_C99_MATH 1
00795 
00796 /* Define if iconv and related functions exist and are usable. */
00797 #define _GLIBCXX_USE_ICONV 1
00798 
00799 /* Define if LFS support is available. */
00800 #define _GLIBCXX_USE_LFS 1
00801 
00802 /* Define if code specialized for long long should be used. */
00803 #define _GLIBCXX_USE_LONG_LONG 1
00804 
00805 /* Define if NLS translations are to be used. */
00806 #define _GLIBCXX_USE_NLS 1
00807 
00808 /* Define if code specialized for wchar_t should be used. */
00809 #define _GLIBCXX_USE_WCHAR_T 1
00810 
00811 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
00812 # define _GLIBCXX_HAVE_ACOSF 1
00813 # define acosf _acosf
00814 #endif
00815 
00816 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
00817 # define _GLIBCXX_HAVE_ACOSL 1
00818 # define acosl _acosl
00819 #endif
00820 
00821 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
00822 # define _GLIBCXX_HAVE_ASINF 1
00823 # define asinf _asinf
00824 #endif
00825 
00826 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
00827 # define _GLIBCXX_HAVE_ASINL 1
00828 # define asinl _asinl
00829 #endif
00830 
00831 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
00832 # define _GLIBCXX_HAVE_ATAN2F 1
00833 # define atan2f _atan2f
00834 #endif
00835 
00836 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
00837 # define _GLIBCXX_HAVE_ATAN2L 1
00838 # define atan2l _atan2l
00839 #endif
00840 
00841 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
00842 # define _GLIBCXX_HAVE_ATANF 1
00843 # define atanf _atanf
00844 #endif
00845 
00846 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
00847 # define _GLIBCXX_HAVE_ATANL 1
00848 # define atanl _atanl
00849 #endif
00850 
00851 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
00852 # define _GLIBCXX_HAVE_CEILF 1
00853 # define ceilf _ceilf
00854 #endif
00855 
00856 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
00857 # define _GLIBCXX_HAVE_CEILL 1
00858 # define ceill _ceill
00859 #endif
00860 
00861 #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN)
00862 # define _GLIBCXX_HAVE_COPYSIGN 1
00863 # define copysign _copysign
00864 #endif
00865 
00866 #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL)
00867 # define _GLIBCXX_HAVE_COPYSIGNL 1
00868 # define copysignl _copysignl
00869 #endif
00870 
00871 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
00872 # define _GLIBCXX_HAVE_COSF 1
00873 # define cosf _cosf
00874 #endif
00875 
00876 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
00877 # define _GLIBCXX_HAVE_COSHF 1
00878 # define coshf _coshf
00879 #endif
00880 
00881 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
00882 # define _GLIBCXX_HAVE_COSHL 1
00883 # define coshl _coshl
00884 #endif
00885 
00886 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
00887 # define _GLIBCXX_HAVE_COSL 1
00888 # define cosl _cosl
00889 #endif
00890 
00891 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
00892 # define _GLIBCXX_HAVE_EXPF 1
00893 # define expf _expf
00894 #endif
00895 
00896 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
00897 # define _GLIBCXX_HAVE_EXPL 1
00898 # define expl _expl
00899 #endif
00900 
00901 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
00902 # define _GLIBCXX_HAVE_FABSF 1
00903 # define fabsf _fabsf
00904 #endif
00905 
00906 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
00907 # define _GLIBCXX_HAVE_FABSL 1
00908 # define fabsl _fabsl
00909 #endif
00910 
00911 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
00912 # define _GLIBCXX_HAVE_FINITE 1
00913 # define finite _finite
00914 #endif
00915 
00916 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
00917 # define _GLIBCXX_HAVE_FINITEF 1
00918 # define finitef _finitef
00919 #endif
00920 
00921 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
00922 # define _GLIBCXX_HAVE_FINITEL 1
00923 # define finitel _finitel
00924 #endif
00925 
00926 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
00927 # define _GLIBCXX_HAVE_FLOORF 1
00928 # define floorf _floorf
00929 #endif
00930 
00931 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
00932 # define _GLIBCXX_HAVE_FLOORL 1
00933 # define floorl _floorl
00934 #endif
00935 
00936 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
00937 # define _GLIBCXX_HAVE_FMODF 1
00938 # define fmodf _fmodf
00939 #endif
00940 
00941 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
00942 # define _GLIBCXX_HAVE_FMODL 1
00943 # define fmodl _fmodl
00944 #endif
00945 
00946 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
00947 # define _GLIBCXX_HAVE_FPCLASS 1
00948 # define fpclass _fpclass
00949 #endif
00950 
00951 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
00952 # define _GLIBCXX_HAVE_FREXPF 1
00953 # define frexpf _frexpf
00954 #endif
00955 
00956 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
00957 # define _GLIBCXX_HAVE_FREXPL 1
00958 # define frexpl _frexpl
00959 #endif
00960 
00961 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
00962 # define _GLIBCXX_HAVE_HYPOT 1
00963 # define hypot _hypot
00964 #endif
00965 
00966 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
00967 # define _GLIBCXX_HAVE_HYPOTF 1
00968 # define hypotf _hypotf
00969 #endif
00970 
00971 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
00972 # define _GLIBCXX_HAVE_HYPOTL 1
00973 # define hypotl _hypotl
00974 #endif
00975 
00976 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
00977 # define _GLIBCXX_HAVE_ISINF 1
00978 # define isinf _isinf
00979 #endif
00980 
00981 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
00982 # define _GLIBCXX_HAVE_ISINFF 1
00983 # define isinff _isinff
00984 #endif
00985 
00986 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
00987 # define _GLIBCXX_HAVE_ISINFL 1
00988 # define isinfl _isinfl
00989 #endif
00990 
00991 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
00992 # define _GLIBCXX_HAVE_ISNAN 1
00993 # define isnan _isnan
00994 #endif
00995 
00996 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
00997 # define _GLIBCXX_HAVE_ISNANF 1
00998 # define isnanf _isnanf
00999 #endif
01000 
01001 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01002 # define _GLIBCXX_HAVE_ISNANL 1
01003 # define isnanl _isnanl
01004 #endif
01005 
01006 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01007 # define _GLIBCXX_HAVE_LDEXPF 1
01008 # define ldexpf _ldexpf
01009 #endif
01010 
01011 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01012 # define _GLIBCXX_HAVE_LDEXPL 1
01013 # define ldexpl _ldexpl
01014 #endif
01015 
01016 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01017 # define _GLIBCXX_HAVE_LOG10F 1
01018 # define log10f _log10f
01019 #endif
01020 
01021 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01022 # define _GLIBCXX_HAVE_LOG10L 1
01023 # define log10l _log10l
01024 #endif
01025 
01026 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01027 # define _GLIBCXX_HAVE_LOGF 1
01028 # define logf _logf
01029 #endif
01030 
01031 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01032 # define _GLIBCXX_HAVE_LOGL 1
01033 # define logl _logl
01034 #endif
01035 
01036 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01037 # define _GLIBCXX_HAVE_MODF 1
01038 # define modf _modf
01039 #endif
01040 
01041 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
01042 # define _GLIBCXX_HAVE_MODFF 1
01043 # define modff _modff
01044 #endif
01045 
01046 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
01047 # define _GLIBCXX_HAVE_MODFL 1
01048 # define modfl _modfl
01049 #endif
01050 
01051 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01052 # define _GLIBCXX_HAVE_POWF 1
01053 # define powf _powf
01054 #endif
01055 
01056 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01057 # define _GLIBCXX_HAVE_POWL 1
01058 # define powl _powl
01059 #endif
01060 
01061 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01062 # define _GLIBCXX_HAVE_QFPCLASS 1
01063 # define qfpclass _qfpclass
01064 #endif
01065 
01066 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01067 # define _GLIBCXX_HAVE_SINCOS 1
01068 # define sincos _sincos
01069 #endif
01070 
01071 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01072 # define _GLIBCXX_HAVE_SINCOSF 1
01073 # define sincosf _sincosf
01074 #endif
01075 
01076 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01077 # define _GLIBCXX_HAVE_SINCOSL 1
01078 # define sincosl _sincosl
01079 #endif
01080 
01081 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01082 # define _GLIBCXX_HAVE_SINF 1
01083 # define sinf _sinf
01084 #endif
01085 
01086 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01087 # define _GLIBCXX_HAVE_SINHF 1
01088 # define sinhf _sinhf
01089 #endif
01090 
01091 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01092 # define _GLIBCXX_HAVE_SINHL 1
01093 # define sinhl _sinhl
01094 #endif
01095 
01096 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01097 # define _GLIBCXX_HAVE_SINL 1
01098 # define sinl _sinl
01099 #endif
01100 
01101 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01102 # define _GLIBCXX_HAVE_SQRTF 1
01103 # define sqrtf _sqrtf
01104 #endif
01105 
01106 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01107 # define _GLIBCXX_HAVE_SQRTL 1
01108 # define sqrtl _sqrtl
01109 #endif
01110 
01111 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01112 # define _GLIBCXX_HAVE_STRTOF 1
01113 # define strtof _strtof
01114 #endif
01115 
01116 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01117 # define _GLIBCXX_HAVE_STRTOLD 1
01118 # define strtold _strtold
01119 #endif
01120 
01121 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01122 # define _GLIBCXX_HAVE_TANF 1
01123 # define tanf _tanf
01124 #endif
01125 
01126 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01127 # define _GLIBCXX_HAVE_TANHF 1
01128 # define tanhf _tanhf
01129 #endif
01130 
01131 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01132 # define _GLIBCXX_HAVE_TANHL 1
01133 # define tanhl _tanhl
01134 #endif
01135 
01136 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01137 # define _GLIBCXX_HAVE_TANL 1
01138 # define tanl _tanl
01139 #endif
01140 #endif // _CXXCONFIG_

Generated on Thu Nov 1 17:35:57 2007 for libstdc++ by  doxygen 1.5.1