c++config.h

00001 // Predefined symbols and macros -*- C++ -*- 00002 00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 // The current version of the C++ library in compressed ISO date format. 00038 #define __GLIBCXX__ 20040906 00039 00040 // Allow use of "export template." This is currently not a feature 00041 // that g++ supports. 00042 // #define _GLIBCXX_EXPORT_TEMPLATE 1 00043 00044 // Allow use of the GNU syntax extension, "extern template." This 00045 // extension is fully documented in the g++ manual, but in a nutshell, 00046 // it inhibits all implicit instantiations and is used throughout the 00047 // library to avoid multiple weak definitions for required types that 00048 // are already explicitly instantiated in the library binary. This 00049 // substantially reduces the binary size of resulting executables. 00050 #ifndef _GLIBCXX_EXTERN_TEMPLATE 00051 # define _GLIBCXX_EXTERN_TEMPLATE 1 00052 #endif 00053 00054 // Debug mode support. Debug mode basic_string is not allowed to be 00055 // associated with std, because of locale and exception link 00056 // dependence. 00057 namespace __gnu_debug_def { } 00058 00059 namespace __gnu_debug 00060 { 00061 using namespace __gnu_debug_def; 00062 } 00063 00064 #ifdef _GLIBCXX_DEBUG 00065 # define _GLIBCXX_STD __gnu_norm 00066 namespace __gnu_norm 00067 { 00068 using namespace std; 00069 } 00070 namespace std 00071 { 00072 using namespace __gnu_debug_def __attribute__ ((strong)); 00073 } 00074 #else 00075 # define _GLIBCXX_STD std 00076 #endif 00077 00078 00079 // The remainder of the prewritten config is automatic; all the 00080 // user hooks are listed above. 00081 00082 // Create a boolean flag to be used to determine if --fast-math is set. 00083 #ifdef __FAST_MATH__ 00084 # define _GLIBCXX_FAST_MATH 1 00085 #else 00086 # define _GLIBCXX_FAST_MATH 0 00087 #endif 00088 00089 // This marks string literals in header files to be extracted for eventual 00090 // translation. It is primarily used for messages in thrown exceptions; see 00091 // src/functexcept.cc. We use __N because the more traditional _N is used 00092 // for something else under certain OSes (see BADNAMES). 00093 #define __N(msgid) (msgid) 00094 00095 // End of prewritten config; the discovered settings follow. 00096 /* config.h. Generated by configure. */ 00097 /* config.h.in. Generated from configure.ac by autoheader. */ 00098 // acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*- 00099 00100 // Defines libstdc++ version. 00101 /* #undef _GLIBCXX_PACKAGE */ 00102 /* #undef _GLIBCXX_VERSION */ 00103 00104 // Needed for gettext. 00105 /* #undef ENABLE_NLS */ 00106 /* #undef _GLIBCXX_HAVE_CATGETS */ 00107 /* #undef _GLIBCXX_HAVE_GETTEXT */ 00108 /* #undef _GLIBCXX_HAVE_STPCPY */ 00109 00110 // Include I/O support for 'long long' and 'unsigned long long'. 00111 #define _GLIBCXX_USE_LONG_LONG 1 00112 00113 // Include support for 'long double'. 00114 /* #undef _GLIBCXX_USE_LONG_DOUBLE */ 00115 00116 // Define if C99 math functions (like fpclassify) should be exposed. 00117 #define _GLIBCXX_USE_C99_MATH 1 00118 00119 // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed. 00120 #define _GLIBCXX_USE_C99 1 00121 00122 // Define if code specialized for wchar_t should be used. 00123 #define _GLIBCXX_USE_WCHAR_T 1 00124 00125 // Define if using setrlimit to set resource limits during 'make check'. 00126 #define _GLIBCXX_RES_LIMITS 1 00127 00128 // Define to use concept checking code from the boost libraries. 00129 /* #undef _GLIBCXX_CONCEPT_CHECKS */ 00130 00131 // Define to use symbol versioning in the shared library. 00132 #define _GLIBCXX_SYMVER 1 00133 00134 // Define symbol versioning in assember directives. If symbol 00135 // versioning is beigng used, and the assembler supports this kind of 00136 // thing, then use it. 00137 // NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4. 00138 #if _GLIBCXX_SYMVER 00139 #define _GLIBCXX_ASM_SYMVER(cur, old, version) \ 00140 asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version); 00141 #else 00142 #define _GLIBCXX_ASM_SYMVER(cur, old, version) 00143 #endif 00144 00145 // Define if LFS support is available. 00146 #define _GLIBCXX_USE_LFS 1 00147 00148 // Define if NLS translations are to be used. 00149 #define _GLIBCXX_USE_NLS 1 00150 00151 // Define if gthr-default.h exists (meaning that threading support is enabled). 00152 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1 00153 00154 // Define if the atan2f function exists. 00155 #define _GLIBCXX_HAVE_ATAN2F 1 00156 00157 // Define if the atan2l function exists. 00158 #define _GLIBCXX_HAVE_ATAN2L 1 00159 00160 // Define if the tanl function exists. 00161 #define _GLIBCXX_HAVE_TANL 1 00162 00163 // Define if the copysignf function exists. 00164 #define _GLIBCXX_HAVE_COPYSIGNF 1 00165 00166 // Define if getpagesize exists. 00167 #define _GLIBCXX_HAVE_GETPAGESIZE 1 00168 00169 // Define if setenv exists. 00170 #define _GLIBCXX_HAVE_SETENV 1 00171 00172 // Define if sigsetjmp exists. 00173 #define _GLIBCXX_HAVE_SIGSETJMP 1 00174 00175 // Define if mbstate_t exists in wchar.h. 00176 #define _GLIBCXX_HAVE_MBSTATE_T 1 00177 00178 // Define if you have the modff function. 00179 #define _GLIBCXX_HAVE_MODFF 1 00180 00181 // Define if you have the modfl function. 00182 #define _GLIBCXX_HAVE_MODFL 1 00183 00184 // Define if you have the expf function. 00185 #define _GLIBCXX_HAVE_EXPF 1 00186 00187 // Define if you have the expl function. 00188 #define _GLIBCXX_HAVE_EXPL 1 00189 00190 // Define if you have the hypot function. 00191 #define _GLIBCXX_HAVE_HYPOT 1 00192 00193 // Define if you have the hypotf function. 00194 #define _GLIBCXX_HAVE_HYPOTF 1 00195 00196 // Define if you have the hypotl function. 00197 #define _GLIBCXX_HAVE_HYPOTL 1 00198 00199 // Define if the compiler/host combination has __builtin_abs 00200 #define _GLIBCXX_HAVE___BUILTIN_ABS 1 00201 00202 // Define if the compiler/host combination has __builtin_labs 00203 #define _GLIBCXX_HAVE___BUILTIN_LABS 1 00204 00205 // Define if the compiler/host combination has __builtin_cos 00206 #define _GLIBCXX_HAVE___BUILTIN_COS 1 00207 00208 // Define if the compiler/host combination has __builtin_cosf 00209 #define _GLIBCXX_HAVE___BUILTIN_COSF 1 00210 00211 // Define if the compiler/host combination has __builtin_cosl 00212 #define _GLIBCXX_HAVE___BUILTIN_COSL 1 00213 00214 // Define if the compiler/host combination has __builtin_fabs 00215 #define _GLIBCXX_HAVE___BUILTIN_FABS 1 00216 00217 // Define if the compiler/host combination has __builtin_fabsf 00218 #define _GLIBCXX_HAVE___BUILTIN_FABSF 1 00219 00220 // Define if the compiler/host combination has __builtin_fabsl 00221 #define _GLIBCXX_HAVE___BUILTIN_FABSL 1 00222 00223 // Define if the compiler/host combination has __builtin_sin 00224 #define _GLIBCXX_HAVE___BUILTIN_SIN 1 00225 00226 // Define if the compiler/host combination has __builtin_sinf 00227 #define _GLIBCXX_HAVE___BUILTIN_SINF 1 00228 00229 // Define if the compiler/host combination has __builtin_sinl 00230 #define _GLIBCXX_HAVE___BUILTIN_SINL 1 00231 00232 // Define if the compiler/host combination has __builtin_sqrt 00233 #define _GLIBCXX_HAVE___BUILTIN_SQRT 1 00234 00235 // Define if the compiler/host combination has __builtin_sqrtf 00236 #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1 00237 00238 // Define if the compiler/host combination has __builtin_sqrtl 00239 #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1 00240 00241 // Define if poll is available in <poll.h>. 00242 #define _GLIBCXX_HAVE_POLL 1 00243 00244 // Define if S_ISREG (Posix) is available in <sys/stat.h>. 00245 #define _GLIBCXX_HAVE_S_ISREG 1 00246 00247 // Define if S_IFREG is available in <sys/stat.h>. 00248 /* #undef _GLIBCXX_HAVE_S_IFREG */ 00249 00250 // Define if writev is available in <sys/uio.h>. 00251 #define _GLIBCXX_HAVE_WRITEV 1 00252 00253 // Define if int64_t is available in <stdint.h>. 00254 #define _GLIBCXX_HAVE_INT64_T 1 00255 00256 // Define if LC_MESSAGES is available in <locale.h>. 00257 #define _GLIBCXX_HAVE_LC_MESSAGES 1 00258 00259 // Define if <float.h> exists. 00260 #define _GLIBCXX_HAVE_FLOAT_H 1 00261 00262 // Define if modf is present in <math.h> 00263 /* #undef _GLIBCXX_HAVE_MODF */ 00264 00265 00266 /* Define to 1 if you have the `acosf' function. */ 00267 #define _GLIBCXX_HAVE_ACOSF 1 00268 00269 /* Define to 1 if you have the `acosl' function. */ 00270 #define _GLIBCXX_HAVE_ACOSL 1 00271 00272 /* Define to 1 if you have the `asinf' function. */ 00273 #define _GLIBCXX_HAVE_ASINF 1 00274 00275 /* Define to 1 if you have the `asinl' function. */ 00276 #define _GLIBCXX_HAVE_ASINL 1 00277 00278 /* Define to 1 if you have the `atan2f' function. */ 00279 #define _GLIBCXX_HAVE_ATAN2F 1 00280 00281 /* Define to 1 if you have the `atan2l' function. */ 00282 #define _GLIBCXX_HAVE_ATAN2L 1 00283 00284 /* Define to 1 if you have the `atanf' function. */ 00285 #define _GLIBCXX_HAVE_ATANF 1 00286 00287 /* Define to 1 if you have the `atanl' function. */ 00288 #define _GLIBCXX_HAVE_ATANL 1 00289 00290 /* Define to 1 if you have the `btowc' function. */ 00291 #define _GLIBCXX_HAVE_BTOWC 1 00292 00293 /* Define to 1 if you have the `ceilf' function. */ 00294 #define _GLIBCXX_HAVE_CEILF 1 00295 00296 /* Define to 1 if you have the `ceill' function. */ 00297 #define _GLIBCXX_HAVE_CEILL 1 00298 00299 /* Define to 1 if you have the `copysign' function. */ 00300 #define _GLIBCXX_HAVE_COPYSIGN 1 00301 00302 /* Define to 1 if you have the `copysignf' function. */ 00303 #define _GLIBCXX_HAVE_COPYSIGNF 1 00304 00305 /* Define to 1 if you have the `copysignl' function. */ 00306 #define _GLIBCXX_HAVE_COPYSIGNL 1 00307 00308 /* Define to 1 if you have the `cosf' function. */ 00309 #define _GLIBCXX_HAVE_COSF 1 00310 00311 /* Define to 1 if you have the `coshf' function. */ 00312 #define _GLIBCXX_HAVE_COSHF 1 00313 00314 /* Define to 1 if you have the `coshl' function. */ 00315 #define _GLIBCXX_HAVE_COSHL 1 00316 00317 /* Define to 1 if you have the `cosl' function. */ 00318 #define _GLIBCXX_HAVE_COSL 1 00319 00320 /* Define to 1 if you have the <endian.h> header file. */ 00321 #define _GLIBCXX_HAVE_ENDIAN_H 1 00322 00323 /* Define to 1 if you have the `expf' function. */ 00324 #define _GLIBCXX_HAVE_EXPF 1 00325 00326 /* Define to 1 if you have the `expl' function. */ 00327 #define _GLIBCXX_HAVE_EXPL 1 00328 00329 /* Define to 1 if you have the `fabsf' function. */ 00330 #define _GLIBCXX_HAVE_FABSF 1 00331 00332 /* Define to 1 if you have the `fabsl' function. */ 00333 #define _GLIBCXX_HAVE_FABSL 1 00334 00335 /* Define to 1 if you have the `fgetwc' function. */ 00336 #define _GLIBCXX_HAVE_FGETWC 1 00337 00338 /* Define to 1 if you have the `fgetws' function. */ 00339 #define _GLIBCXX_HAVE_FGETWS 1 00340 00341 /* Define to 1 if you have the `finite' function. */ 00342 #define _GLIBCXX_HAVE_FINITE 1 00343 00344 /* Define to 1 if you have the `finitef' function. */ 00345 #define _GLIBCXX_HAVE_FINITEF 1 00346 00347 /* Define to 1 if you have the `finitel' function. */ 00348 #define _GLIBCXX_HAVE_FINITEL 1 00349 00350 /* Define to 1 if you have the <float.h> header file. */ 00351 #define _GLIBCXX_HAVE_FLOAT_H 1 00352 00353 /* Define to 1 if you have the `floorf' function. */ 00354 #define _GLIBCXX_HAVE_FLOORF 1 00355 00356 /* Define to 1 if you have the `floorl' function. */ 00357 #define _GLIBCXX_HAVE_FLOORL 1 00358 00359 /* Define to 1 if you have the `fmodf' function. */ 00360 #define _GLIBCXX_HAVE_FMODF 1 00361 00362 /* Define to 1 if you have the `fmodl' function. */ 00363 #define _GLIBCXX_HAVE_FMODL 1 00364 00365 /* Define to 1 if you have the `fpclass' function. */ 00366 /* #undef _GLIBCXX_HAVE_FPCLASS */ 00367 00368 /* Define to 1 if you have the `fputwc' function. */ 00369 #define _GLIBCXX_HAVE_FPUTWC 1 00370 00371 /* Define to 1 if you have the `fputws' function. */ 00372 #define _GLIBCXX_HAVE_FPUTWS 1 00373 00374 /* Define to 1 if you have the <fp.h> header file. */ 00375 /* #undef _GLIBCXX_HAVE_FP_H */ 00376 00377 /* Define to 1 if you have the `frexpf' function. */ 00378 #define _GLIBCXX_HAVE_FREXPF 1 00379 00380 /* Define to 1 if you have the `frexpl' function. */ 00381 #define _GLIBCXX_HAVE_FREXPL 1 00382 00383 /* Define to 1 if you have the `fwide' function. */ 00384 #define _GLIBCXX_HAVE_FWIDE 1 00385 00386 /* Define to 1 if you have the `fwprintf' function. */ 00387 #define _GLIBCXX_HAVE_FWPRINTF 1 00388 00389 /* Define to 1 if you have the `fwscanf' function. */ 00390 #define _GLIBCXX_HAVE_FWSCANF 1 00391 00392 /* Define to 1 if you have the <gconv.h> header file. */ 00393 #define _GLIBCXX_HAVE_GCONV_H 1 00394 00395 /* Define to 1 if you have the `getpagesize' function. */ 00396 #define _GLIBCXX_HAVE_GETPAGESIZE 1 00397 00398 /* Define to 1 if you have the `getwc' function. */ 00399 #define _GLIBCXX_HAVE_GETWC 1 00400 00401 /* Define to 1 if you have the `getwchar' function. */ 00402 #define _GLIBCXX_HAVE_GETWCHAR 1 00403 00404 /* Define to 1 if you have the `hypot' function. */ 00405 #define _GLIBCXX_HAVE_HYPOT 1 00406 00407 /* Define to 1 if you have the `hypotf' function. */ 00408 #define _GLIBCXX_HAVE_HYPOTF 1 00409 00410 /* Define to 1 if you have the `hypotl' function. */ 00411 #define _GLIBCXX_HAVE_HYPOTL 1 00412 00413 /* Define to 1 if you have the `iconv' function. */ 00414 #define _GLIBCXX_HAVE_ICONV 1 00415 00416 /* Define to 1 if you have the `iconv_close' function. */ 00417 #define _GLIBCXX_HAVE_ICONV_CLOSE 1 00418 00419 /* Define to 1 if you have the `iconv_open' function. */ 00420 #define _GLIBCXX_HAVE_ICONV_OPEN 1 00421 00422 /* Define to 1 if you have the <ieeefp.h> header file. */ 00423 /* #undef _GLIBCXX_HAVE_IEEEFP_H */ 00424 00425 /* Define to 1 if you have the <inttypes.h> header file. */ 00426 #define _GLIBCXX_HAVE_INTTYPES_H 1 00427 00428 /* Define to 1 if you have the `isinf' function. */ 00429 #define _GLIBCXX_HAVE_ISINF 1 00430 00431 /* Define to 1 if you have the `isinff' function. */ 00432 #define _GLIBCXX_HAVE_ISINFF 1 00433 00434 /* Define to 1 if you have the `isinfl' function. */ 00435 #define _GLIBCXX_HAVE_ISINFL 1 00436 00437 /* Define to 1 if you have the `isnan' function. */ 00438 #define _GLIBCXX_HAVE_ISNAN 1 00439 00440 /* Define to 1 if you have the `isnanf' function. */ 00441 #define _GLIBCXX_HAVE_ISNANF 1 00442 00443 /* Define to 1 if you have the `isnanl' function. */ 00444 #define _GLIBCXX_HAVE_ISNANL 1 00445 00446 /* Define to 1 if you have the `iswblank' function. */ 00447 #define _GLIBCXX_HAVE_ISWBLANK 1 00448 00449 /* Define to 1 if you have the `ldexpf' function. */ 00450 #define _GLIBCXX_HAVE_LDEXPF 1 00451 00452 /* Define to 1 if you have the `ldexpl' function. */ 00453 #define _GLIBCXX_HAVE_LDEXPL 1 00454 00455 /* Define to 1 if you have the <libintl.h> header file. */ 00456 #define _GLIBCXX_HAVE_LIBINTL_H 1 00457 00458 /* Define to 1 if you have the `m' library (-lm). */ 00459 #define _GLIBCXX_HAVE_LIBM 1 00460 00461 /* Only used in build directory testsuite_hooks.h. */ 00462 #define _GLIBCXX_HAVE_LIMIT_AS 1 00463 00464 /* Only used in build directory testsuite_hooks.h. */ 00465 #define _GLIBCXX_HAVE_LIMIT_DATA 1 00466 00467 /* Only used in build directory testsuite_hooks.h. */ 00468 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 00469 00470 /* Only used in build directory testsuite_hooks.h. */ 00471 #define _GLIBCXX_HAVE_LIMIT_RSS 1 00472 00473 /* Only used in build directory testsuite_hooks.h. */ 00474 #define _GLIBCXX_HAVE_LIMIT_VMEM 0 00475 00476 /* Define to 1 if you have the <locale.h> header file. */ 00477 #define _GLIBCXX_HAVE_LOCALE_H 1 00478 00479 /* Define to 1 if you have the `log10f' function. */ 00480 #define _GLIBCXX_HAVE_LOG10F 1 00481 00482 /* Define to 1 if you have the `log10l' function. */ 00483 #define _GLIBCXX_HAVE_LOG10L 1 00484 00485 /* Define to 1 if you have the `logf' function. */ 00486 #define _GLIBCXX_HAVE_LOGF 1 00487 00488 /* Define to 1 if you have the `logl' function. */ 00489 #define _GLIBCXX_HAVE_LOGL 1 00490 00491 /* Define to 1 if you have the <machine/endian.h> header file. */ 00492 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */ 00493 00494 /* Define to 1 if you have the <machine/param.h> header file. */ 00495 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */ 00496 00497 /* Define to 1 if you have the `mbrlen' function. */ 00498 #define _GLIBCXX_HAVE_MBRLEN 1 00499 00500 /* Define to 1 if you have the `mbrtowc' function. */ 00501 #define _GLIBCXX_HAVE_MBRTOWC 1 00502 00503 /* Define to 1 if you have the `mbsinit' function. */ 00504 #define _GLIBCXX_HAVE_MBSINIT 1 00505 00506 /* Define to 1 if you have the `mbsrtowcs' function. */ 00507 #define _GLIBCXX_HAVE_MBSRTOWCS 1 00508 00509 /* Define to 1 if you have the <memory.h> header file. */ 00510 #define _GLIBCXX_HAVE_MEMORY_H 1 00511 00512 /* Define to 1 if you have a working `mmap' system call. */ 00513 #define _GLIBCXX_HAVE_MMAP 1 00514 00515 /* Define to 1 if you have the `modff' function. */ 00516 #define _GLIBCXX_HAVE_MODFF 1 00517 00518 /* Define to 1 if you have the `modfl' function. */ 00519 #define _GLIBCXX_HAVE_MODFL 1 00520 00521 /* Define to 1 if you have the <nan.h> header file. */ 00522 /* #undef _GLIBCXX_HAVE_NAN_H */ 00523 00524 /* Define to 1 if you have the `nl_langinfo' function. */ 00525 #define _GLIBCXX_HAVE_NL_LANGINFO 1 00526 00527 /* Define to 1 if you have the `powf' function. */ 00528 #define _GLIBCXX_HAVE_POWF 1 00529 00530 /* Define to 1 if you have the `powl' function. */ 00531 #define _GLIBCXX_HAVE_POWL 1 00532 00533 /* Define to 1 if you have the `putwc' function. */ 00534 #define _GLIBCXX_HAVE_PUTWC 1 00535 00536 /* Define to 1 if you have the `putwchar' function. */ 00537 #define _GLIBCXX_HAVE_PUTWCHAR 1 00538 00539 /* Define to 1 if you have the `qfpclass' function. */ 00540 /* #undef _GLIBCXX_HAVE_QFPCLASS */ 00541 00542 /* Define to 1 if you have the `setenv' function. */ 00543 #define _GLIBCXX_HAVE_SETENV 1 00544 00545 /* Define if sigsetjmp is available. */ 00546 #define _GLIBCXX_HAVE_SIGSETJMP 1 00547 00548 /* Define to 1 if you have the `sincos' function. */ 00549 #define _GLIBCXX_HAVE_SINCOS 1 00550 00551 /* Define to 1 if you have the `sincosf' function. */ 00552 #define _GLIBCXX_HAVE_SINCOSF 1 00553 00554 /* Define to 1 if you have the `sincosl' function. */ 00555 #define _GLIBCXX_HAVE_SINCOSL 1 00556 00557 /* Define to 1 if you have the `sinf' function. */ 00558 #define _GLIBCXX_HAVE_SINF 1 00559 00560 /* Define to 1 if you have the `sinhf' function. */ 00561 #define _GLIBCXX_HAVE_SINHF 1 00562 00563 /* Define to 1 if you have the `sinhl' function. */ 00564 #define _GLIBCXX_HAVE_SINHL 1 00565 00566 /* Define to 1 if you have the `sinl' function. */ 00567 #define _GLIBCXX_HAVE_SINL 1 00568 00569 /* Define to 1 if you have the `sqrtf' function. */ 00570 #define _GLIBCXX_HAVE_SQRTF 1 00571 00572 /* Define to 1 if you have the `sqrtl' function. */ 00573 #define _GLIBCXX_HAVE_SQRTL 1 00574 00575 /* Define to 1 if you have the <stdint.h> header file. */ 00576 #define _GLIBCXX_HAVE_STDINT_H 1 00577 00578 /* Define to 1 if you have the <stdlib.h> header file. */ 00579 #define _GLIBCXX_HAVE_STDLIB_H 1 00580 00581 /* Define to 1 if you have the <strings.h> header file. */ 00582 #define _GLIBCXX_HAVE_STRINGS_H 1 00583 00584 /* Define to 1 if you have the <string.h> header file. */ 00585 #define _GLIBCXX_HAVE_STRING_H 1 00586 00587 /* Define to 1 if you have the `strtof' function. */ 00588 #define _GLIBCXX_HAVE_STRTOF 1 00589 00590 /* Define to 1 if you have the `strtold' function. */ 00591 #define _GLIBCXX_HAVE_STRTOLD 1 00592 00593 /* Define to 1 if you have the `swprintf' function. */ 00594 #define _GLIBCXX_HAVE_SWPRINTF 1 00595 00596 /* Define to 1 if you have the `swscanf' function. */ 00597 #define _GLIBCXX_HAVE_SWSCANF 1 00598 00599 /* Define to 1 if you have the <sys/filio.h> header file. */ 00600 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */ 00601 00602 /* Define to 1 if you have the <sys/ioctl.h> header file. */ 00603 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 00604 00605 /* Define to 1 if you have the <sys/isa_defs.h> header file. */ 00606 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ 00607 00608 /* Define to 1 if you have the <sys/machine.h> header file. */ 00609 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ 00610 00611 /* Define to 1 if you have the <sys/param.h> header file. */ 00612 /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */ 00613 00614 /* Define to 1 if you have the <sys/resource.h> header file. */ 00615 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 00616 00617 /* Define to 1 if you have the <sys/stat.h> header file. */ 00618 #define _GLIBCXX_HAVE_SYS_STAT_H 1 00619 00620 /* Define to 1 if you have the <sys/time.h> header file. */ 00621 #define _GLIBCXX_HAVE_SYS_TIME_H 1 00622 00623 /* Define to 1 if you have the <sys/types.h> header file. */ 00624 #define _GLIBCXX_HAVE_SYS_TYPES_H 1 00625 00626 /* Define to 1 if you have the <sys/uio.h> header file. */ 00627 #define _GLIBCXX_HAVE_SYS_UIO_H 1 00628 00629 /* Define to 1 if you have the `tanf' function. */ 00630 #define _GLIBCXX_HAVE_TANF 1 00631 00632 /* Define to 1 if you have the `tanhf' function. */ 00633 #define _GLIBCXX_HAVE_TANHF 1 00634 00635 /* Define to 1 if you have the `tanhl' function. */ 00636 #define _GLIBCXX_HAVE_TANHL 1 00637 00638 /* Define to 1 if you have the `tanl' function. */ 00639 #define _GLIBCXX_HAVE_TANL 1 00640 00641 /* Define to 1 if you have the `ungetwc' function. */ 00642 #define _GLIBCXX_HAVE_UNGETWC 1 00643 00644 /* Define to 1 if you have the <unistd.h> header file. */ 00645 #define _GLIBCXX_HAVE_UNISTD_H 1 00646 00647 /* Define to 1 if you have the `vfwprintf' function. */ 00648 #define _GLIBCXX_HAVE_VFWPRINTF 1 00649 00650 /* Define to 1 if you have the `vfwscanf' function. */ 00651 #define _GLIBCXX_HAVE_VFWSCANF 1 00652 00653 /* Define to 1 if you have the `vswprintf' function. */ 00654 #define _GLIBCXX_HAVE_VSWPRINTF 1 00655 00656 /* Define to 1 if you have the `vswscanf' function. */ 00657 #define _GLIBCXX_HAVE_VSWSCANF 1 00658 00659 /* Define to 1 if you have the `vwprintf' function. */ 00660 #define _GLIBCXX_HAVE_VWPRINTF 1 00661 00662 /* Define to 1 if you have the `vwscanf' function. */ 00663 #define _GLIBCXX_HAVE_VWSCANF 1 00664 00665 /* Define to 1 if you have the <wchar.h> header file. */ 00666 #define _GLIBCXX_HAVE_WCHAR_H 1 00667 00668 /* Define to 1 if you have the `wcrtomb' function. */ 00669 #define _GLIBCXX_HAVE_WCRTOMB 1 00670 00671 /* Define to 1 if you have the `wcscat' function. */ 00672 #define _GLIBCXX_HAVE_WCSCAT 1 00673 00674 /* Define to 1 if you have the `wcschr' function. */ 00675 #define _GLIBCXX_HAVE_WCSCHR 1 00676 00677 /* Define to 1 if you have the `wcscmp' function. */ 00678 #define _GLIBCXX_HAVE_WCSCMP 1 00679 00680 /* Define to 1 if you have the `wcscoll' function. */ 00681 #define _GLIBCXX_HAVE_WCSCOLL 1 00682 00683 /* Define to 1 if you have the `wcscpy' function. */ 00684 #define _GLIBCXX_HAVE_WCSCPY 1 00685 00686 /* Define to 1 if you have the `wcscspn' function. */ 00687 #define _GLIBCXX_HAVE_WCSCSPN 1 00688 00689 /* Define to 1 if you have the `wcsftime' function. */ 00690 #define _GLIBCXX_HAVE_WCSFTIME 1 00691 00692 /* Define to 1 if you have the `wcslen' function. */ 00693 #define _GLIBCXX_HAVE_WCSLEN 1 00694 00695 /* Define to 1 if you have the `wcsncat' function. */ 00696 #define _GLIBCXX_HAVE_WCSNCAT 1 00697 00698 /* Define to 1 if you have the `wcsncmp' function. */ 00699 #define _GLIBCXX_HAVE_WCSNCMP 1 00700 00701 /* Define to 1 if you have the `wcsncpy' function. */ 00702 #define _GLIBCXX_HAVE_WCSNCPY 1 00703 00704 /* Define to 1 if you have the `wcspbrk' function. */ 00705 #define _GLIBCXX_HAVE_WCSPBRK 1 00706 00707 /* Define to 1 if you have the `wcsrchr' function. */ 00708 #define _GLIBCXX_HAVE_WCSRCHR 1 00709 00710 /* Define to 1 if you have the `wcsrtombs' function. */ 00711 #define _GLIBCXX_HAVE_WCSRTOMBS 1 00712 00713 /* Define to 1 if you have the `wcsspn' function. */ 00714 #define _GLIBCXX_HAVE_WCSSPN 1 00715 00716 /* Define to 1 if you have the `wcsstr' function. */ 00717 #define _GLIBCXX_HAVE_WCSSTR 1 00718 00719 /* Define to 1 if you have the `wcstod' function. */ 00720 #define _GLIBCXX_HAVE_WCSTOD 1 00721 00722 /* Define to 1 if you have the `wcstof' function. */ 00723 #define _GLIBCXX_HAVE_WCSTOF 1 00724 00725 /* Define to 1 if you have the `wcstok' function. */ 00726 #define _GLIBCXX_HAVE_WCSTOK 1 00727 00728 /* Define to 1 if you have the `wcstol' function. */ 00729 #define _GLIBCXX_HAVE_WCSTOL 1 00730 00731 /* Define to 1 if you have the `wcstoul' function. */ 00732 #define _GLIBCXX_HAVE_WCSTOUL 1 00733 00734 /* Define to 1 if you have the `wcsxfrm' function. */ 00735 #define _GLIBCXX_HAVE_WCSXFRM 1 00736 00737 /* Define to 1 if you have the `wctob' function. */ 00738 #define _GLIBCXX_HAVE_WCTOB 1 00739 00740 /* Define to 1 if you have the <wctype.h> header file. */ 00741 #define _GLIBCXX_HAVE_WCTYPE_H 1 00742 00743 /* Define to 1 if you have the `wmemchr' function. */ 00744 #define _GLIBCXX_HAVE_WMEMCHR 1 00745 00746 /* Define to 1 if you have the `wmemcmp' function. */ 00747 #define _GLIBCXX_HAVE_WMEMCMP 1 00748 00749 /* Define to 1 if you have the `wmemcpy' function. */ 00750 #define _GLIBCXX_HAVE_WMEMCPY 1 00751 00752 /* Define to 1 if you have the `wmemmove' function. */ 00753 #define _GLIBCXX_HAVE_WMEMMOVE 1 00754 00755 /* Define to 1 if you have the `wmemset' function. */ 00756 #define _GLIBCXX_HAVE_WMEMSET 1 00757 00758 /* Define to 1 if you have the `wprintf' function. */ 00759 #define _GLIBCXX_HAVE_WPRINTF 1 00760 00761 /* Define to 1 if you have the `wscanf' function. */ 00762 #define _GLIBCXX_HAVE_WSCANF 1 00763 00764 /* Define to 1 if you have the `_acosf' function. */ 00765 /* #undef _GLIBCXX_HAVE__ACOSF */ 00766 00767 /* Define to 1 if you have the `_acosl' function. */ 00768 /* #undef _GLIBCXX_HAVE__ACOSL */ 00769 00770 /* Define to 1 if you have the `_asinf' function. */ 00771 /* #undef _GLIBCXX_HAVE__ASINF */ 00772 00773 /* Define to 1 if you have the `_asinl' function. */ 00774 /* #undef _GLIBCXX_HAVE__ASINL */ 00775 00776 /* Define to 1 if you have the `_atan2f' function. */ 00777 /* #undef _GLIBCXX_HAVE__ATAN2F */ 00778 00779 /* Define to 1 if you have the `_atan2l' function. */ 00780 /* #undef _GLIBCXX_HAVE__ATAN2L */ 00781 00782 /* Define to 1 if you have the `_atanf' function. */ 00783 /* #undef _GLIBCXX_HAVE__ATANF */ 00784 00785 /* Define to 1 if you have the `_atanl' function. */ 00786 /* #undef _GLIBCXX_HAVE__ATANL */ 00787 00788 /* Define to 1 if you have the `_ceilf' function. */ 00789 /* #undef _GLIBCXX_HAVE__CEILF */ 00790 00791 /* Define to 1 if you have the `_ceill' function. */ 00792 /* #undef _GLIBCXX_HAVE__CEILL */ 00793 00794 /* Define to 1 if you have the `_copysign' function. */ 00795 /* #undef _GLIBCXX_HAVE__COPYSIGN */ 00796 00797 /* Define to 1 if you have the `_copysignl' function. */ 00798 /* #undef _GLIBCXX_HAVE__COPYSIGNL */ 00799 00800 /* Define to 1 if you have the `_cosf' function. */ 00801 /* #undef _GLIBCXX_HAVE__COSF */ 00802 00803 /* Define to 1 if you have the `_coshf' function. */ 00804 /* #undef _GLIBCXX_HAVE__COSHF */ 00805 00806 /* Define to 1 if you have the `_coshl' function. */ 00807 /* #undef _GLIBCXX_HAVE__COSHL */ 00808 00809 /* Define to 1 if you have the `_cosl' function. */ 00810 /* #undef _GLIBCXX_HAVE__COSL */ 00811 00812 /* Define to 1 if you have the `_expf' function. */ 00813 /* #undef _GLIBCXX_HAVE__EXPF */ 00814 00815 /* Define to 1 if you have the `_expl' function. */ 00816 /* #undef _GLIBCXX_HAVE__EXPL */ 00817 00818 /* Define to 1 if you have the `_fabsf' function. */ 00819 /* #undef _GLIBCXX_HAVE__FABSF */ 00820 00821 /* Define to 1 if you have the `_fabsl' function. */ 00822 /* #undef _GLIBCXX_HAVE__FABSL */ 00823 00824 /* Define to 1 if you have the `_finite' function. */ 00825 /* #undef _GLIBCXX_HAVE__FINITE */ 00826 00827 /* Define to 1 if you have the `_finitef' function. */ 00828 /* #undef _GLIBCXX_HAVE__FINITEF */ 00829 00830 /* Define to 1 if you have the `_finitel' function. */ 00831 /* #undef _GLIBCXX_HAVE__FINITEL */ 00832 00833 /* Define to 1 if you have the `_floorf' function. */ 00834 /* #undef _GLIBCXX_HAVE__FLOORF */ 00835 00836 /* Define to 1 if you have the `_floorl' function. */ 00837 /* #undef _GLIBCXX_HAVE__FLOORL */ 00838 00839 /* Define to 1 if you have the `_fmodf' function. */ 00840 /* #undef _GLIBCXX_HAVE__FMODF */ 00841 00842 /* Define to 1 if you have the `_fmodl' function. */ 00843 /* #undef _GLIBCXX_HAVE__FMODL */ 00844 00845 /* Define to 1 if you have the `_fpclass' function. */ 00846 /* #undef _GLIBCXX_HAVE__FPCLASS */ 00847 00848 /* Define to 1 if you have the `_frexpf' function. */ 00849 /* #undef _GLIBCXX_HAVE__FREXPF */ 00850 00851 /* Define to 1 if you have the `_frexpl' function. */ 00852 /* #undef _GLIBCXX_HAVE__FREXPL */ 00853 00854 /* Define to 1 if you have the `_hypot' function. */ 00855 /* #undef _GLIBCXX_HAVE__HYPOT */ 00856 00857 /* Define to 1 if you have the `_hypotf' function. */ 00858 /* #undef _GLIBCXX_HAVE__HYPOTF */ 00859 00860 /* Define to 1 if you have the `_hypotl' function. */ 00861 /* #undef _GLIBCXX_HAVE__HYPOTL */ 00862 00863 /* Define to 1 if you have the `_isinf' function. */ 00864 /* #undef _GLIBCXX_HAVE__ISINF */ 00865 00866 /* Define to 1 if you have the `_isinff' function. */ 00867 /* #undef _GLIBCXX_HAVE__ISINFF */ 00868 00869 /* Define to 1 if you have the `_isinfl' function. */ 00870 /* #undef _GLIBCXX_HAVE__ISINFL */ 00871 00872 /* Define to 1 if you have the `_isnan' function. */ 00873 /* #undef _GLIBCXX_HAVE__ISNAN */ 00874 00875 /* Define to 1 if you have the `_isnanf' function. */ 00876 /* #undef _GLIBCXX_HAVE__ISNANF */ 00877 00878 /* Define to 1 if you have the `_isnanl' function. */ 00879 /* #undef _GLIBCXX_HAVE__ISNANL */ 00880 00881 /* Define to 1 if you have the `_ldexpf' function. */ 00882 /* #undef _GLIBCXX_HAVE__LDEXPF */ 00883 00884 /* Define to 1 if you have the `_ldexpl' function. */ 00885 /* #undef _GLIBCXX_HAVE__LDEXPL */ 00886 00887 /* Define to 1 if you have the `_log10f' function. */ 00888 /* #undef _GLIBCXX_HAVE__LOG10F */ 00889 00890 /* Define to 1 if you have the `_log10l' function. */ 00891 /* #undef _GLIBCXX_HAVE__LOG10L */ 00892 00893 /* Define to 1 if you have the `_logf' function. */ 00894 /* #undef _GLIBCXX_HAVE__LOGF */ 00895 00896 /* Define to 1 if you have the `_logl' function. */ 00897 /* #undef _GLIBCXX_HAVE__LOGL */ 00898 00899 /* Define to 1 if you have the `_modff' function. */ 00900 /* #undef _GLIBCXX_HAVE__MODFF */ 00901 00902 /* Define to 1 if you have the `_modfl' function. */ 00903 /* #undef _GLIBCXX_HAVE__MODFL */ 00904 00905 /* Define to 1 if you have the `_powf' function. */ 00906 /* #undef _GLIBCXX_HAVE__POWF */ 00907 00908 /* Define to 1 if you have the `_powl' function. */ 00909 /* #undef _GLIBCXX_HAVE__POWL */ 00910 00911 /* Define to 1 if you have the `_qfpclass' function. */ 00912 /* #undef _GLIBCXX_HAVE__QFPCLASS */ 00913 00914 /* Define to 1 if you have the `_sincos' function. */ 00915 /* #undef _GLIBCXX_HAVE__SINCOS */ 00916 00917 /* Define to 1 if you have the `_sincosf' function. */ 00918 /* #undef _GLIBCXX_HAVE__SINCOSF */ 00919 00920 /* Define to 1 if you have the `_sincosl' function. */ 00921 /* #undef _GLIBCXX_HAVE__SINCOSL */ 00922 00923 /* Define to 1 if you have the `_sinf' function. */ 00924 /* #undef _GLIBCXX_HAVE__SINF */ 00925 00926 /* Define to 1 if you have the `_sinhf' function. */ 00927 /* #undef _GLIBCXX_HAVE__SINHF */ 00928 00929 /* Define to 1 if you have the `_sinhl' function. */ 00930 /* #undef _GLIBCXX_HAVE__SINHL */ 00931 00932 /* Define to 1 if you have the `_sinl' function. */ 00933 /* #undef _GLIBCXX_HAVE__SINL */ 00934 00935 /* Define to 1 if you have the `_sqrtf' function. */ 00936 /* #undef _GLIBCXX_HAVE__SQRTF */ 00937 00938 /* Define to 1 if you have the `_sqrtl' function. */ 00939 /* #undef _GLIBCXX_HAVE__SQRTL */ 00940 00941 /* Define to 1 if you have the `_tanf' function. */ 00942 /* #undef _GLIBCXX_HAVE__TANF */ 00943 00944 /* Define to 1 if you have the `_tanhf' function. */ 00945 /* #undef _GLIBCXX_HAVE__TANHF */ 00946 00947 /* Define to 1 if you have the `_tanhl' function. */ 00948 /* #undef _GLIBCXX_HAVE__TANHL */ 00949 00950 /* Define to 1 if you have the `_tanl' function. */ 00951 /* #undef _GLIBCXX_HAVE__TANL */ 00952 00953 /* Define to 1 if you have the `__signbit' function. */ 00954 #define _GLIBCXX_HAVE___SIGNBIT 1 00955 00956 /* Define to 1 if you have the `__signbitf' function. */ 00957 #define _GLIBCXX_HAVE___SIGNBITF 1 00958 00959 /* Define to 1 if you have the `__signbitl' function. */ 00960 #define _GLIBCXX_HAVE___SIGNBITL 1 00961 00962 /* Define to the address where bug reports for this package should be sent. */ 00963 #define _GLIBCXX_PACKAGE_BUGREPORT "" 00964 00965 /* Define to the full name of this package. */ 00966 #define _GLIBCXX_PACKAGE_NAME "package-unused" 00967 00968 /* Define to the full name and version of this package. */ 00969 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 00970 00971 /* Define to the one symbol short name of this package. */ 00972 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 00973 00974 /* Define to the version of this package. */ 00975 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 00976 00977 /* Define to 1 if you have the ANSI C header files. */ 00978 #define STDC_HEADERS 1 00979 00980 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ 00981 #define _GLIBCXX_HOSTED 1 00982 00983 /* Define if the compiler is configured for setjmp/longjmp exceptions. */ 00984 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */ 00985 // 00986 // Systems that have certain non-standard functions prefixed with an 00987 // underscore, we'll handle those here. Must come after config.h.in. 00988 // 00989 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 00990 # define _GLIBCXX_HAVE_ISNAN 1 00991 # define isnan _isnan 00992 #endif 00993 00994 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 00995 # define _GLIBCXX_HAVE_ISNANF 1 00996 # define isnanf _isnanf 00997 #endif 00998 00999 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 01000 # define _GLIBCXX_HAVE_ISNANL 1 01001 # define isnanl _isnanl 01002 #endif 01003 01004 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 01005 # define _GLIBCXX_HAVE_ISINF 1 01006 # define isinf _isinf 01007 #endif 01008 01009 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 01010 # define _GLIBCXX_HAVE_ISINFF 1 01011 # define isinff _isinff 01012 #endif 01013 01014 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 01015 # define _GLIBCXX_HAVE_ISINFL 1 01016 # define isinfl _isinfl 01017 #endif 01018 01019 #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN) 01020 # define _GLIBCXX_HAVE_COPYSIGN 1 01021 # define copysign _copysign 01022 #endif 01023 01024 #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL) 01025 # define _GLIBCXX_HAVE_COPYSIGNL 1 01026 # define copysignl _copysignl 01027 #endif 01028 01029 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 01030 # define _GLIBCXX_HAVE_COSF 1 01031 # define cosf _cosf 01032 #endif 01033 01034 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 01035 # define _GLIBCXX_HAVE_ACOSF 1 01036 # define acosf _acosf 01037 #endif 01038 01039 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 01040 # define _GLIBCXX_HAVE_ACOSL 1 01041 # define acosl _acosl 01042 #endif 01043 01044 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 01045 # define _GLIBCXX_HAVE_ASINF 1 01046 # define asinf _asinf 01047 #endif 01048 01049 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 01050 # define _GLIBCXX_HAVE_ASINL 1 01051 # define asinl _asinl 01052 #endif 01053 01054 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 01055 # define _GLIBCXX_HAVE_ATANF 1 01056 # define atanf _atanf 01057 #endif 01058 01059 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 01060 # define _GLIBCXX_HAVE_ATANL 1 01061 # define atanl _atanl 01062 #endif 01063 01064 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 01065 # define _GLIBCXX_HAVE_CEILF 1 01066 # define aceil _ceilf 01067 #endif 01068 01069 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 01070 # define _GLIBCXX_HAVE_CEILL 1 01071 # define aceil _ceill 01072 #endif 01073 01074 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 01075 # define _GLIBCXX_HAVE_COSHF 1 01076 # define coshf _coshf 01077 #endif 01078 01079 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 01080 # define _GLIBCXX_HAVE_COSL 1 01081 # define cosl _cosl 01082 #endif 01083 01084 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 01085 # define _GLIBCXX_HAVE_LOGF 1 01086 # define logf _logf 01087 #endif 01088 01089 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 01090 # define _GLIBCXX_HAVE_COSHL 1 01091 # define coshl _coshl 01092 #endif 01093 01094 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 01095 # define _GLIBCXX_HAVE_EXPF 1 01096 # define expf _expf 01097 #endif 01098 01099 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 01100 # define _GLIBCXX_HAVE_EXPL 1 01101 # define expl _expl 01102 #endif 01103 01104 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 01105 # define _GLIBCXX_HAVE_FABSF 1 01106 # define fabsf _fabsf 01107 #endif 01108 01109 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 01110 # define _GLIBCXX_HAVE_FABSL 1 01111 # define fabsl _fabsl 01112 #endif 01113 01114 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 01115 # define _GLIBCXX_HAVE_FLOORF 1 01116 # define floorf _floorf 01117 #endif 01118 01119 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 01120 # define _GLIBCXX_HAVE_FLOORL 1 01121 # define floorl _floorl 01122 #endif 01123 01124 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 01125 # define _GLIBCXX_HAVE_FMODF 1 01126 # define fmodf _fmodf 01127 #endif 01128 01129 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 01130 # define _GLIBCXX_HAVE_FMODL 1 01131 # define fmodl _fmodl 01132 #endif 01133 01134 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 01135 # define _GLIBCXX_HAVE_FREXPF 1 01136 # define frexpf _frexpf 01137 #endif 01138 01139 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 01140 # define _GLIBCXX_HAVE_FREXPL 1 01141 # define frexpl _frexpl 01142 #endif 01143 01144 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 01145 # define _GLIBCXX_HAVE_LDEXPF 1 01146 # define ldexpf _ldexpf 01147 #endif 01148 01149 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 01150 # define _GLIBCXX_HAVE_LDEXPL 1 01151 # define ldexpl _ldexpl 01152 #endif 01153 01154 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 01155 # define _GLIBCXX_HAVE_LOG10F 1 01156 # define log10f _log10f 01157 #endif 01158 01159 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 01160 # define _GLIBCXX_HAVE_LOGL 1 01161 # define logl _logl 01162 #endif 01163 01164 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 01165 # define _GLIBCXX_HAVE_POWF 1 01166 # define powf _powf 01167 #endif 01168 01169 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 01170 # define _GLIBCXX_HAVE_LOG10L 1 01171 # define log10l _log10l 01172 #endif 01173 01174 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 01175 # define _GLIBCXX_HAVE_MODF 1 01176 # define modf _modf 01177 #endif 01178 01179 #if defined (_GLIBCXX_HAVE__MODL) && ! defined (_GLIBCXX_HAVE_MODL) 01180 # define _GLIBCXX_HAVE_MODL 1 01181 # define modl _modl 01182 #endif 01183 01184 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 01185 # define _GLIBCXX_HAVE_SINF 1 01186 # define sinf _sinf 01187 #endif 01188 01189 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 01190 # define _GLIBCXX_HAVE_POWL 1 01191 # define powl _powl 01192 #endif 01193 01194 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 01195 # define _GLIBCXX_HAVE_SINHF 1 01196 # define sinhf _sinhf 01197 #endif 01198 01199 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 01200 # define _GLIBCXX_HAVE_SINL 1 01201 # define sinl _sinl 01202 #endif 01203 01204 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 01205 # define _GLIBCXX_HAVE_SQRTF 1 01206 # define sqrtf _sqrtf 01207 #endif 01208 01209 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 01210 # define _GLIBCXX_HAVE_SINHL 1 01211 # define sinhl _sinhl 01212 #endif 01213 01214 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 01215 # define _GLIBCXX_HAVE_TANF 1 01216 # define tanf _tanf 01217 #endif 01218 01219 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 01220 # define _GLIBCXX_HAVE_SQRTL 1 01221 # define sqrtl _sqrtl 01222 #endif 01223 01224 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 01225 # define _GLIBCXX_HAVE_TANHF 1 01226 # define tanhf _tanhf 01227 #endif 01228 01229 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 01230 # define _GLIBCXX_HAVE_TANF 1 01231 # define tanf _tanf 01232 #endif 01233 01234 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 01235 # define _GLIBCXX_HAVE_STRTOF 1 01236 # define strtof _strtof 01237 #endif 01238 01239 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 01240 # define _GLIBCXX_HAVE_TANHL 1 01241 # define tanhl _tanhl 01242 #endif 01243 01244 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 01245 # define _GLIBCXX_HAVE_STRTOLD 1 01246 # define strtold _strtold 01247 #endif 01248 01249 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 01250 # define _GLIBCXX_HAVE_SINCOS 1 01251 # define sincos _sincos 01252 #endif 01253 01254 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 01255 # define _GLIBCXX_HAVE_SINCOSF 1 01256 # define sincosf _sincosf 01257 #endif 01258 01259 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 01260 # define _GLIBCXX_HAVE_SINCOSL 1 01261 # define sincosl _sincosl 01262 #endif 01263 01264 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 01265 # define _GLIBCXX_HAVE_FINITE 1 01266 # define finite _finite 01267 #endif 01268 01269 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 01270 # define _GLIBCXX_HAVE_FINITEF 1 01271 # define finitef _finitef 01272 #endif 01273 01274 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 01275 # define _GLIBCXX_HAVE_FINITEL 1 01276 # define finitel _finitel 01277 #endif 01278 01279 #if defined (_GLIBCXX_HAVE__QFINITE) && ! defined (_GLIBCXX_HAVE_QFINITE) 01280 # define _GLIBCXX_HAVE_QFINITE 1 01281 # define qfinite _qfinite 01282 #endif 01283 01284 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 01285 # define _GLIBCXX_HAVE_FPCLASS 1 01286 # define fpclass _fpclass 01287 #endif 01288 01289 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 01290 # define _GLIBCXX_HAVE_QFPCLASS 1 01291 # define qfpclass _qfpclass 01292 #endif 01293 01294 #endif // _CXXCONFIG_

Generated on Wed Sep 8 10:19:28 2004 for libstdc++-v3 Source by doxygen 1.3.8