Work around MinGW mangling of "host:/path"
[msysgit/historical-msysgit.git] / mingw / include / c++ / 3.4.2 / mingw32 / bits / c++config.h
blob8036493b2f4150339b265010eb36829ba4a77fc4
1 // Predefined symbols and macros -*- C++ -*-
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 #ifndef _CXXCONFIG
32 #define _CXXCONFIG 1
34 // Pick up any OS-specific definitions.
35 #include <bits/os_defines.h>
37 // The current version of the C++ library in compressed ISO date format.
38 #define __GLIBCXX__ 20040907
40 // Allow use of "export template." This is currently not a feature
41 // that g++ supports.
42 // #define _GLIBCXX_EXPORT_TEMPLATE 1
44 // Allow use of the GNU syntax extension, "extern template." This
45 // extension is fully documented in the g++ manual, but in a nutshell,
46 // it inhibits all implicit instantiations and is used throughout the
47 // library to avoid multiple weak definitions for required types that
48 // are already explicitly instantiated in the library binary. This
49 // substantially reduces the binary size of resulting executables.
50 #ifndef _GLIBCXX_EXTERN_TEMPLATE
51 # define _GLIBCXX_EXTERN_TEMPLATE 1
52 #endif
54 // Debug mode support. Debug mode basic_string is not allowed to be
55 // associated with std, because of locale and exception link
56 // dependence.
57 namespace __gnu_debug_def { }
59 namespace __gnu_debug
61 using namespace __gnu_debug_def;
64 #ifdef _GLIBCXX_DEBUG
65 # define _GLIBCXX_STD __gnu_norm
66 namespace __gnu_norm
68 using namespace std;
70 namespace std
72 using namespace __gnu_debug_def __attribute__ ((strong));
74 #else
75 # define _GLIBCXX_STD std
76 #endif
79 // The remainder of the prewritten config is automatic; all the
80 // user hooks are listed above.
82 // Create a boolean flag to be used to determine if --fast-math is set.
83 #ifdef __FAST_MATH__
84 # define _GLIBCXX_FAST_MATH 1
85 #else
86 # define _GLIBCXX_FAST_MATH 0
87 #endif
89 // This marks string literals in header files to be extracted for eventual
90 // translation. It is primarily used for messages in thrown exceptions; see
91 // src/functexcept.cc. We use __N because the more traditional _N is used
92 // for something else under certain OSes (see BADNAMES).
93 #define __N(msgid) (msgid)
95 // End of prewritten config; the discovered settings follow.
96 /* config.h. Generated by configure. */
97 /* config.h.in. Generated from configure.ac by autoheader. */
98 // acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*-
100 // Defines libstdc++ version.
101 /* #undef _GLIBCXX_PACKAGE */
102 /* #undef _GLIBCXX_VERSION */
104 // Needed for gettext.
105 /* #undef ENABLE_NLS */
106 /* #undef _GLIBCXX_HAVE_CATGETS */
107 /* #undef _GLIBCXX_HAVE_GETTEXT */
108 /* #undef _GLIBCXX_HAVE_STPCPY */
110 // Include I/O support for 'long long' and 'unsigned long long'.
111 #define _GLIBCXX_USE_LONG_LONG 1
113 // Include support for 'long double'.
114 /* #undef _GLIBCXX_USE_LONG_DOUBLE */
116 // Define if C99 math functions (like fpclassify) should be exposed.
117 #define _GLIBCXX_USE_C99_MATH 1
119 // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed.
120 #define _GLIBCXX_USE_C99 1
122 // Define if code specialized for wchar_t should be used.
123 /* #undef _GLIBCXX_USE_WCHAR_T */
125 // Define if using setrlimit to set resource limits during 'make check'.
126 /* #undef _GLIBCXX_RES_LIMITS */
128 // Define to use concept checking code from the boost libraries.
129 /* #undef _GLIBCXX_CONCEPT_CHECKS */
131 // Define to use symbol versioning in the shared library.
132 /* #undef _GLIBCXX_SYMVER */
134 // Define symbol versioning in assember directives. If symbol
135 // versioning is beigng used, and the assembler supports this kind of
136 // thing, then use it.
137 // NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4.
138 #if _GLIBCXX_SYMVER
139 #define _GLIBCXX_ASM_SYMVER(cur, old, version) \
140 asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version);
141 #else
142 #define _GLIBCXX_ASM_SYMVER(cur, old, version)
143 #endif
145 // Define if LFS support is available.
146 #define _GLIBCXX_USE_LFS 1
148 // Define if NLS translations are to be used.
149 /* #undef _GLIBCXX_USE_NLS */
151 // Define if gthr-default.h exists (meaning that threading support is enabled).
152 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
154 // Define if the atan2f function exists.
155 #define _GLIBCXX_HAVE_ATAN2F 1
157 // Define if the atan2l function exists.
158 #define _GLIBCXX_HAVE_ATAN2L 1
160 // Define if the tanl function exists.
161 #define _GLIBCXX_HAVE_TANL 1
163 // Define if the copysignf function exists.
164 #define _GLIBCXX_HAVE_COPYSIGNF 1
166 // Define if getpagesize exists.
167 #define _GLIBCXX_HAVE_GETPAGESIZE 1
169 // Define if setenv exists.
170 /* #undef _GLIBCXX_HAVE_SETENV */
172 // Define if sigsetjmp exists.
173 /* #undef _GLIBCXX_HAVE_SIGSETJMP */
175 // Define if mbstate_t exists in wchar.h.
176 #define _GLIBCXX_HAVE_MBSTATE_T 1
178 // Define if you have the modff function.
179 #define _GLIBCXX_HAVE_MODFF 1
181 // Define if you have the modfl function.
182 #define _GLIBCXX_HAVE_MODFL 1
184 // Define if you have the expf function.
185 #define _GLIBCXX_HAVE_EXPF 1
187 // Define if you have the expl function.
188 #define _GLIBCXX_HAVE_EXPL 1
190 // Define if you have the hypot function.
191 #define _GLIBCXX_HAVE_HYPOT 1
193 // Define if you have the hypotf function.
194 #define _GLIBCXX_HAVE_HYPOTF 1
196 // Define if you have the hypotl function.
197 #define _GLIBCXX_HAVE_HYPOTL 1
199 // Define if the compiler/host combination has __builtin_abs
200 #define _GLIBCXX_HAVE___BUILTIN_ABS 1
202 // Define if the compiler/host combination has __builtin_labs
203 #define _GLIBCXX_HAVE___BUILTIN_LABS 1
205 // Define if the compiler/host combination has __builtin_cos
206 #define _GLIBCXX_HAVE___BUILTIN_COS 1
208 // Define if the compiler/host combination has __builtin_cosf
209 #define _GLIBCXX_HAVE___BUILTIN_COSF 1
211 // Define if the compiler/host combination has __builtin_cosl
212 #define _GLIBCXX_HAVE___BUILTIN_COSL 1
214 // Define if the compiler/host combination has __builtin_fabs
215 #define _GLIBCXX_HAVE___BUILTIN_FABS 1
217 // Define if the compiler/host combination has __builtin_fabsf
218 #define _GLIBCXX_HAVE___BUILTIN_FABSF 1
220 // Define if the compiler/host combination has __builtin_fabsl
221 #define _GLIBCXX_HAVE___BUILTIN_FABSL 1
223 // Define if the compiler/host combination has __builtin_sin
224 #define _GLIBCXX_HAVE___BUILTIN_SIN 1
226 // Define if the compiler/host combination has __builtin_sinf
227 #define _GLIBCXX_HAVE___BUILTIN_SINF 1
229 // Define if the compiler/host combination has __builtin_sinl
230 #define _GLIBCXX_HAVE___BUILTIN_SINL 1
232 // Define if the compiler/host combination has __builtin_sqrt
233 #define _GLIBCXX_HAVE___BUILTIN_SQRT 1
235 // Define if the compiler/host combination has __builtin_sqrtf
236 #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1
238 // Define if the compiler/host combination has __builtin_sqrtl
239 #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1
241 // Define if poll is available in <poll.h>.
242 /* #undef _GLIBCXX_HAVE_POLL */
244 // Define if S_ISREG (Posix) is available in <sys/stat.h>.
245 #define _GLIBCXX_HAVE_S_ISREG 1
247 // Define if S_IFREG is available in <sys/stat.h>.
248 /* #undef _GLIBCXX_HAVE_S_IFREG */
250 // Define if writev is available in <sys/uio.h>.
251 /* #undef _GLIBCXX_HAVE_WRITEV */
253 // Define if int64_t is available in <stdint.h>.
254 #define _GLIBCXX_HAVE_INT64_T 1
256 // Define if LC_MESSAGES is available in <locale.h>.
257 /* #undef _GLIBCXX_HAVE_LC_MESSAGES */
259 // Define if <float.h> exists.
260 #define _GLIBCXX_HAVE_FLOAT_H 1
262 // Define if modf is present in <math.h>
263 /* #undef _GLIBCXX_HAVE_MODF */
266 /* Define to 1 if you have the `acosf' function. */
267 #define _GLIBCXX_HAVE_ACOSF 1
269 /* Define to 1 if you have the `acosl' function. */
270 #define _GLIBCXX_HAVE_ACOSL 1
272 /* Define to 1 if you have the `asinf' function. */
273 #define _GLIBCXX_HAVE_ASINF 1
275 /* Define to 1 if you have the `asinl' function. */
276 #define _GLIBCXX_HAVE_ASINL 1
278 /* Define to 1 if you have the `atan2f' function. */
279 #define _GLIBCXX_HAVE_ATAN2F 1
281 /* Define to 1 if you have the `atan2l' function. */
282 #define _GLIBCXX_HAVE_ATAN2L 1
284 /* Define to 1 if you have the `atanf' function. */
285 #define _GLIBCXX_HAVE_ATANF 1
287 /* Define to 1 if you have the `atanl' function. */
288 #define _GLIBCXX_HAVE_ATANL 1
290 /* Define to 1 if you have the `btowc' function. */
291 /* #undef _GLIBCXX_HAVE_BTOWC */
293 /* Define to 1 if you have the `ceilf' function. */
294 #define _GLIBCXX_HAVE_CEILF 1
296 /* Define to 1 if you have the `ceill' function. */
297 #define _GLIBCXX_HAVE_CEILL 1
299 /* Define to 1 if you have the `copysign' function. */
300 #define _GLIBCXX_HAVE_COPYSIGN 1
302 /* Define to 1 if you have the `copysignf' function. */
303 #define _GLIBCXX_HAVE_COPYSIGNF 1
305 /* Define to 1 if you have the `copysignl' function. */
306 #define _GLIBCXX_HAVE_COPYSIGNL 1
308 /* Define to 1 if you have the `cosf' function. */
309 #define _GLIBCXX_HAVE_COSF 1
311 /* Define to 1 if you have the `coshf' function. */
312 #define _GLIBCXX_HAVE_COSHF 1
314 /* Define to 1 if you have the `coshl' function. */
315 #define _GLIBCXX_HAVE_COSHL 1
317 /* Define to 1 if you have the `cosl' function. */
318 #define _GLIBCXX_HAVE_COSL 1
320 /* Define to 1 if you have the <endian.h> header file. */
321 /* #undef _GLIBCXX_HAVE_ENDIAN_H */
323 /* Define to 1 if you have the `expf' function. */
324 #define _GLIBCXX_HAVE_EXPF 1
326 /* Define to 1 if you have the `expl' function. */
327 #define _GLIBCXX_HAVE_EXPL 1
329 /* Define to 1 if you have the `fabsf' function. */
330 #define _GLIBCXX_HAVE_FABSF 1
332 /* Define to 1 if you have the `fabsl' function. */
333 #define _GLIBCXX_HAVE_FABSL 1
335 /* Define to 1 if you have the `fgetwc' function. */
336 #define _GLIBCXX_HAVE_FGETWC 1
338 /* Define to 1 if you have the `fgetws' function. */
339 #define _GLIBCXX_HAVE_FGETWS 1
341 /* Define to 1 if you have the `finite' function. */
342 #define _GLIBCXX_HAVE_FINITE 1
344 /* Define to 1 if you have the `finitef' function. */
345 /* #undef _GLIBCXX_HAVE_FINITEF */
347 /* Define to 1 if you have the `finitel' function. */
348 /* #undef _GLIBCXX_HAVE_FINITEL */
350 /* Define to 1 if you have the <float.h> header file. */
351 #define _GLIBCXX_HAVE_FLOAT_H 1
353 /* Define to 1 if you have the `floorf' function. */
354 #define _GLIBCXX_HAVE_FLOORF 1
356 /* Define to 1 if you have the `floorl' function. */
357 #define _GLIBCXX_HAVE_FLOORL 1
359 /* Define to 1 if you have the `fmodf' function. */
360 #define _GLIBCXX_HAVE_FMODF 1
362 /* Define to 1 if you have the `fmodl' function. */
363 #define _GLIBCXX_HAVE_FMODL 1
365 /* Define to 1 if you have the `fpclass' function. */
366 #define _GLIBCXX_HAVE_FPCLASS 1
368 /* Define to 1 if you have the `fputwc' function. */
369 #define _GLIBCXX_HAVE_FPUTWC 1
371 /* Define to 1 if you have the `fputws' function. */
372 #define _GLIBCXX_HAVE_FPUTWS 1
374 /* Define to 1 if you have the <fp.h> header file. */
375 /* #undef _GLIBCXX_HAVE_FP_H */
377 /* Define to 1 if you have the `frexpf' function. */
378 #define _GLIBCXX_HAVE_FREXPF 1
380 /* Define to 1 if you have the `frexpl' function. */
381 #define _GLIBCXX_HAVE_FREXPL 1
383 /* Define to 1 if you have the `fwide' function. */
384 #define _GLIBCXX_HAVE_FWIDE 1
386 /* Define to 1 if you have the `fwprintf' function. */
387 #define _GLIBCXX_HAVE_FWPRINTF 1
389 /* Define to 1 if you have the `fwscanf' function. */
390 #define _GLIBCXX_HAVE_FWSCANF 1
392 /* Define to 1 if you have the <gconv.h> header file. */
393 /* #undef _GLIBCXX_HAVE_GCONV_H */
395 /* Define to 1 if you have the `getpagesize' function. */
396 #define _GLIBCXX_HAVE_GETPAGESIZE 1
398 /* Define to 1 if you have the `getwc' function. */
399 #define _GLIBCXX_HAVE_GETWC 1
401 /* Define to 1 if you have the `getwchar' function. */
402 #define _GLIBCXX_HAVE_GETWCHAR 1
404 /* Define to 1 if you have the `hypot' function. */
405 #define _GLIBCXX_HAVE_HYPOT 1
407 /* Define to 1 if you have the `hypotf' function. */
408 #define _GLIBCXX_HAVE_HYPOTF 1
410 /* Define to 1 if you have the `hypotl' function. */
411 #define _GLIBCXX_HAVE_HYPOTL 1
413 /* Define to 1 if you have the `iconv' function. */
414 /* #undef _GLIBCXX_HAVE_ICONV */
416 /* Define to 1 if you have the `iconv_close' function. */
417 /* #undef _GLIBCXX_HAVE_ICONV_CLOSE */
419 /* Define to 1 if you have the `iconv_open' function. */
420 /* #undef _GLIBCXX_HAVE_ICONV_OPEN */
422 /* Define to 1 if you have the <ieeefp.h> header file. */
423 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
425 /* Define to 1 if you have the <inttypes.h> header file. */
426 #define _GLIBCXX_HAVE_INTTYPES_H 1
428 /* Define to 1 if you have the `isinf' function. */
429 /* #undef _GLIBCXX_HAVE_ISINF */
431 /* Define to 1 if you have the `isinff' function. */
432 /* #undef _GLIBCXX_HAVE_ISINFF */
434 /* Define to 1 if you have the `isinfl' function. */
435 /* #undef _GLIBCXX_HAVE_ISINFL */
437 /* Define to 1 if you have the `isnan' function. */
438 #define _GLIBCXX_HAVE_ISNAN 1
440 /* Define to 1 if you have the `isnanf' function. */
441 /* #undef _GLIBCXX_HAVE_ISNANF */
443 /* Define to 1 if you have the `isnanl' function. */
444 /* #undef _GLIBCXX_HAVE_ISNANL */
446 /* Define to 1 if you have the `iswblank' function. */
447 /* #undef _GLIBCXX_HAVE_ISWBLANK */
449 /* Define to 1 if you have the `ldexpf' function. */
450 #define _GLIBCXX_HAVE_LDEXPF 1
452 /* Define to 1 if you have the `ldexpl' function. */
453 #define _GLIBCXX_HAVE_LDEXPL 1
455 /* Define to 1 if you have the <libintl.h> header file. */
456 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
458 /* Define to 1 if you have the `m' library (-lm). */
459 #define _GLIBCXX_HAVE_LIBM 1
461 /* Only used in build directory testsuite_hooks.h. */
462 /* #undef _GLIBCXX_HAVE_LIMIT_AS */
464 /* Only used in build directory testsuite_hooks.h. */
465 /* #undef _GLIBCXX_HAVE_LIMIT_DATA */
467 /* Only used in build directory testsuite_hooks.h. */
468 /* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */
470 /* Only used in build directory testsuite_hooks.h. */
471 /* #undef _GLIBCXX_HAVE_LIMIT_RSS */
473 /* Only used in build directory testsuite_hooks.h. */
474 /* #undef _GLIBCXX_HAVE_LIMIT_VMEM */
476 /* Define to 1 if you have the <locale.h> header file. */
477 #define _GLIBCXX_HAVE_LOCALE_H 1
479 /* Define to 1 if you have the `log10f' function. */
480 #define _GLIBCXX_HAVE_LOG10F 1
482 /* Define to 1 if you have the `log10l' function. */
483 #define _GLIBCXX_HAVE_LOG10L 1
485 /* Define to 1 if you have the `logf' function. */
486 #define _GLIBCXX_HAVE_LOGF 1
488 /* Define to 1 if you have the `logl' function. */
489 #define _GLIBCXX_HAVE_LOGL 1
491 /* Define to 1 if you have the <machine/endian.h> header file. */
492 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
494 /* Define to 1 if you have the <machine/param.h> header file. */
495 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
497 /* Define to 1 if you have the `mbrlen' function. */
498 /* #undef _GLIBCXX_HAVE_MBRLEN */
500 /* Define to 1 if you have the `mbrtowc' function. */
501 /* #undef _GLIBCXX_HAVE_MBRTOWC */
503 /* Define to 1 if you have the `mbsinit' function. */
504 #define _GLIBCXX_HAVE_MBSINIT 1
506 /* Define to 1 if you have the `mbsrtowcs' function. */
507 /* #undef _GLIBCXX_HAVE_MBSRTOWCS */
509 /* Define to 1 if you have the <memory.h> header file. */
510 #define _GLIBCXX_HAVE_MEMORY_H 1
512 /* Define to 1 if you have a working `mmap' system call. */
513 /* #undef _GLIBCXX_HAVE_MMAP */
515 /* Define to 1 if you have the `modff' function. */
516 #define _GLIBCXX_HAVE_MODFF 1
518 /* Define to 1 if you have the `modfl' function. */
519 #define _GLIBCXX_HAVE_MODFL 1
521 /* Define to 1 if you have the <nan.h> header file. */
522 /* #undef _GLIBCXX_HAVE_NAN_H */
524 /* Define to 1 if you have the `nl_langinfo' function. */
525 /* #undef _GLIBCXX_HAVE_NL_LANGINFO */
527 /* Define to 1 if you have the `powf' function. */
528 #define _GLIBCXX_HAVE_POWF 1
530 /* Define to 1 if you have the `powl' function. */
531 #define _GLIBCXX_HAVE_POWL 1
533 /* Define to 1 if you have the `putwc' function. */
534 #define _GLIBCXX_HAVE_PUTWC 1
536 /* Define to 1 if you have the `putwchar' function. */
537 #define _GLIBCXX_HAVE_PUTWCHAR 1
539 /* Define to 1 if you have the `qfpclass' function. */
540 /* #undef _GLIBCXX_HAVE_QFPCLASS */
542 /* Define to 1 if you have the `setenv' function. */
543 /* #undef _GLIBCXX_HAVE_SETENV */
545 /* Define if sigsetjmp is available. */
546 /* #undef _GLIBCXX_HAVE_SIGSETJMP */
548 /* Define to 1 if you have the `sincos' function. */
549 /* #undef _GLIBCXX_HAVE_SINCOS */
551 /* Define to 1 if you have the `sincosf' function. */
552 /* #undef _GLIBCXX_HAVE_SINCOSF */
554 /* Define to 1 if you have the `sincosl' function. */
555 /* #undef _GLIBCXX_HAVE_SINCOSL */
557 /* Define to 1 if you have the `sinf' function. */
558 #define _GLIBCXX_HAVE_SINF 1
560 /* Define to 1 if you have the `sinhf' function. */
561 #define _GLIBCXX_HAVE_SINHF 1
563 /* Define to 1 if you have the `sinhl' function. */
564 #define _GLIBCXX_HAVE_SINHL 1
566 /* Define to 1 if you have the `sinl' function. */
567 #define _GLIBCXX_HAVE_SINL 1
569 /* Define to 1 if you have the `sqrtf' function. */
570 #define _GLIBCXX_HAVE_SQRTF 1
572 /* Define to 1 if you have the `sqrtl' function. */
573 #define _GLIBCXX_HAVE_SQRTL 1
575 /* Define to 1 if you have the <stdint.h> header file. */
576 #define _GLIBCXX_HAVE_STDINT_H 1
578 /* Define to 1 if you have the <stdlib.h> header file. */
579 #define _GLIBCXX_HAVE_STDLIB_H 1
581 /* Define to 1 if you have the <strings.h> header file. */
582 #define _GLIBCXX_HAVE_STRINGS_H 1
584 /* Define to 1 if you have the <string.h> header file. */
585 #define _GLIBCXX_HAVE_STRING_H 1
587 /* Define to 1 if you have the `strtof' function. */
588 #define _GLIBCXX_HAVE_STRTOF 1
590 /* Define to 1 if you have the `strtold' function. */
591 #define _GLIBCXX_HAVE_STRTOLD 1
593 /* Define to 1 if you have the `swprintf' function. */
594 #define _GLIBCXX_HAVE_SWPRINTF 1
596 /* Define to 1 if you have the `swscanf' function. */
597 #define _GLIBCXX_HAVE_SWSCANF 1
599 /* Define to 1 if you have the <sys/filio.h> header file. */
600 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
602 /* Define to 1 if you have the <sys/ioctl.h> header file. */
603 /* #undef _GLIBCXX_HAVE_SYS_IOCTL_H */
605 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
606 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
608 /* Define to 1 if you have the <sys/machine.h> header file. */
609 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
611 /* Define to 1 if you have the <sys/param.h> header file. */
612 /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */
614 /* Define to 1 if you have the <sys/resource.h> header file. */
615 /* #undef _GLIBCXX_HAVE_SYS_RESOURCE_H */
617 /* Define to 1 if you have the <sys/stat.h> header file. */
618 #define _GLIBCXX_HAVE_SYS_STAT_H 1
620 /* Define to 1 if you have the <sys/time.h> header file. */
621 #define _GLIBCXX_HAVE_SYS_TIME_H 1
623 /* Define to 1 if you have the <sys/types.h> header file. */
624 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
626 /* Define to 1 if you have the <sys/uio.h> header file. */
627 /* #undef _GLIBCXX_HAVE_SYS_UIO_H */
629 /* Define to 1 if you have the `tanf' function. */
630 #define _GLIBCXX_HAVE_TANF 1
632 /* Define to 1 if you have the `tanhf' function. */
633 #define _GLIBCXX_HAVE_TANHF 1
635 /* Define to 1 if you have the `tanhl' function. */
636 #define _GLIBCXX_HAVE_TANHL 1
638 /* Define to 1 if you have the `tanl' function. */
639 #define _GLIBCXX_HAVE_TANL 1
641 /* Define to 1 if you have the `ungetwc' function. */
642 #define _GLIBCXX_HAVE_UNGETWC 1
644 /* Define to 1 if you have the <unistd.h> header file. */
645 #define _GLIBCXX_HAVE_UNISTD_H 1
647 /* Define to 1 if you have the `vfwprintf' function. */
648 #define _GLIBCXX_HAVE_VFWPRINTF 1
650 /* Define to 1 if you have the `vfwscanf' function. */
651 #define _GLIBCXX_HAVE_VFWSCANF 1
653 /* Define to 1 if you have the `vswprintf' function. */
654 #define _GLIBCXX_HAVE_VSWPRINTF 1
656 /* Define to 1 if you have the `vswscanf' function. */
657 #define _GLIBCXX_HAVE_VSWSCANF 1
659 /* Define to 1 if you have the `vwprintf' function. */
660 #define _GLIBCXX_HAVE_VWPRINTF 1
662 /* Define to 1 if you have the `vwscanf' function. */
663 #define _GLIBCXX_HAVE_VWSCANF 1
665 /* Define to 1 if you have the <wchar.h> header file. */
666 #define _GLIBCXX_HAVE_WCHAR_H 1
668 /* Define to 1 if you have the `wcrtomb' function. */
669 /* #undef _GLIBCXX_HAVE_WCRTOMB */
671 /* Define to 1 if you have the `wcscat' function. */
672 #define _GLIBCXX_HAVE_WCSCAT 1
674 /* Define to 1 if you have the `wcschr' function. */
675 #define _GLIBCXX_HAVE_WCSCHR 1
677 /* Define to 1 if you have the `wcscmp' function. */
678 #define _GLIBCXX_HAVE_WCSCMP 1
680 /* Define to 1 if you have the `wcscoll' function. */
681 #define _GLIBCXX_HAVE_WCSCOLL 1
683 /* Define to 1 if you have the `wcscpy' function. */
684 #define _GLIBCXX_HAVE_WCSCPY 1
686 /* Define to 1 if you have the `wcscspn' function. */
687 #define _GLIBCXX_HAVE_WCSCSPN 1
689 /* Define to 1 if you have the `wcsftime' function. */
690 #define _GLIBCXX_HAVE_WCSFTIME 1
692 /* Define to 1 if you have the `wcslen' function. */
693 #define _GLIBCXX_HAVE_WCSLEN 1
695 /* Define to 1 if you have the `wcsncat' function. */
696 #define _GLIBCXX_HAVE_WCSNCAT 1
698 /* Define to 1 if you have the `wcsncmp' function. */
699 #define _GLIBCXX_HAVE_WCSNCMP 1
701 /* Define to 1 if you have the `wcsncpy' function. */
702 #define _GLIBCXX_HAVE_WCSNCPY 1
704 /* Define to 1 if you have the `wcspbrk' function. */
705 #define _GLIBCXX_HAVE_WCSPBRK 1
707 /* Define to 1 if you have the `wcsrchr' function. */
708 #define _GLIBCXX_HAVE_WCSRCHR 1
710 /* Define to 1 if you have the `wcsrtombs' function. */
711 /* #undef _GLIBCXX_HAVE_WCSRTOMBS */
713 /* Define to 1 if you have the `wcsspn' function. */
714 #define _GLIBCXX_HAVE_WCSSPN 1
716 /* Define to 1 if you have the `wcsstr' function. */
717 #define _GLIBCXX_HAVE_WCSSTR 1
719 /* Define to 1 if you have the `wcstod' function. */
720 #define _GLIBCXX_HAVE_WCSTOD 1
722 /* Define to 1 if you have the `wcstof' function. */
723 #define _GLIBCXX_HAVE_WCSTOF 1
725 /* Define to 1 if you have the `wcstok' function. */
726 #define _GLIBCXX_HAVE_WCSTOK 1
728 /* Define to 1 if you have the `wcstol' function. */
729 #define _GLIBCXX_HAVE_WCSTOL 1
731 /* Define to 1 if you have the `wcstoul' function. */
732 #define _GLIBCXX_HAVE_WCSTOUL 1
734 /* Define to 1 if you have the `wcsxfrm' function. */
735 #define _GLIBCXX_HAVE_WCSXFRM 1
737 /* Define to 1 if you have the `wctob' function. */
738 /* #undef _GLIBCXX_HAVE_WCTOB */
740 /* Define to 1 if you have the <wctype.h> header file. */
741 #define _GLIBCXX_HAVE_WCTYPE_H 1
743 /* Define to 1 if you have the `wmemchr' function. */
744 #define _GLIBCXX_HAVE_WMEMCHR 1
746 /* Define to 1 if you have the `wmemcmp' function. */
747 #define _GLIBCXX_HAVE_WMEMCMP 1
749 /* Define to 1 if you have the `wmemcpy' function. */
750 #define _GLIBCXX_HAVE_WMEMCPY 1
752 /* Define to 1 if you have the `wmemmove' function. */
753 #define _GLIBCXX_HAVE_WMEMMOVE 1
755 /* Define to 1 if you have the `wmemset' function. */
756 #define _GLIBCXX_HAVE_WMEMSET 1
758 /* Define to 1 if you have the `wprintf' function. */
759 #define _GLIBCXX_HAVE_WPRINTF 1
761 /* Define to 1 if you have the `wscanf' function. */
762 #define _GLIBCXX_HAVE_WSCANF 1
764 /* Define to 1 if you have the `_acosf' function. */
765 /* #undef _GLIBCXX_HAVE__ACOSF */
767 /* Define to 1 if you have the `_acosl' function. */
768 /* #undef _GLIBCXX_HAVE__ACOSL */
770 /* Define to 1 if you have the `_asinf' function. */
771 /* #undef _GLIBCXX_HAVE__ASINF */
773 /* Define to 1 if you have the `_asinl' function. */
774 /* #undef _GLIBCXX_HAVE__ASINL */
776 /* Define to 1 if you have the `_atan2f' function. */
777 /* #undef _GLIBCXX_HAVE__ATAN2F */
779 /* Define to 1 if you have the `_atan2l' function. */
780 /* #undef _GLIBCXX_HAVE__ATAN2L */
782 /* Define to 1 if you have the `_atanf' function. */
783 /* #undef _GLIBCXX_HAVE__ATANF */
785 /* Define to 1 if you have the `_atanl' function. */
786 /* #undef _GLIBCXX_HAVE__ATANL */
788 /* Define to 1 if you have the `_ceilf' function. */
789 /* #undef _GLIBCXX_HAVE__CEILF */
791 /* Define to 1 if you have the `_ceill' function. */
792 /* #undef _GLIBCXX_HAVE__CEILL */
794 /* Define to 1 if you have the `_copysign' function. */
795 /* #undef _GLIBCXX_HAVE__COPYSIGN */
797 /* Define to 1 if you have the `_copysignl' function. */
798 /* #undef _GLIBCXX_HAVE__COPYSIGNL */
800 /* Define to 1 if you have the `_cosf' function. */
801 /* #undef _GLIBCXX_HAVE__COSF */
803 /* Define to 1 if you have the `_coshf' function. */
804 /* #undef _GLIBCXX_HAVE__COSHF */
806 /* Define to 1 if you have the `_coshl' function. */
807 /* #undef _GLIBCXX_HAVE__COSHL */
809 /* Define to 1 if you have the `_cosl' function. */
810 /* #undef _GLIBCXX_HAVE__COSL */
812 /* Define to 1 if you have the `_expf' function. */
813 /* #undef _GLIBCXX_HAVE__EXPF */
815 /* Define to 1 if you have the `_expl' function. */
816 /* #undef _GLIBCXX_HAVE__EXPL */
818 /* Define to 1 if you have the `_fabsf' function. */
819 /* #undef _GLIBCXX_HAVE__FABSF */
821 /* Define to 1 if you have the `_fabsl' function. */
822 /* #undef _GLIBCXX_HAVE__FABSL */
824 /* Define to 1 if you have the `_finite' function. */
825 /* #undef _GLIBCXX_HAVE__FINITE */
827 /* Define to 1 if you have the `_finitef' function. */
828 /* #undef _GLIBCXX_HAVE__FINITEF */
830 /* Define to 1 if you have the `_finitel' function. */
831 /* #undef _GLIBCXX_HAVE__FINITEL */
833 /* Define to 1 if you have the `_floorf' function. */
834 /* #undef _GLIBCXX_HAVE__FLOORF */
836 /* Define to 1 if you have the `_floorl' function. */
837 /* #undef _GLIBCXX_HAVE__FLOORL */
839 /* Define to 1 if you have the `_fmodf' function. */
840 /* #undef _GLIBCXX_HAVE__FMODF */
842 /* Define to 1 if you have the `_fmodl' function. */
843 /* #undef _GLIBCXX_HAVE__FMODL */
845 /* Define to 1 if you have the `_fpclass' function. */
846 /* #undef _GLIBCXX_HAVE__FPCLASS */
848 /* Define to 1 if you have the `_frexpf' function. */
849 /* #undef _GLIBCXX_HAVE__FREXPF */
851 /* Define to 1 if you have the `_frexpl' function. */
852 /* #undef _GLIBCXX_HAVE__FREXPL */
854 /* Define to 1 if you have the `_hypot' function. */
855 /* #undef _GLIBCXX_HAVE__HYPOT */
857 /* Define to 1 if you have the `_hypotf' function. */
858 /* #undef _GLIBCXX_HAVE__HYPOTF */
860 /* Define to 1 if you have the `_hypotl' function. */
861 /* #undef _GLIBCXX_HAVE__HYPOTL */
863 /* Define to 1 if you have the `_isinf' function. */
864 /* #undef _GLIBCXX_HAVE__ISINF */
866 /* Define to 1 if you have the `_isinff' function. */
867 /* #undef _GLIBCXX_HAVE__ISINFF */
869 /* Define to 1 if you have the `_isinfl' function. */
870 /* #undef _GLIBCXX_HAVE__ISINFL */
872 /* Define to 1 if you have the `_isnan' function. */
873 /* #undef _GLIBCXX_HAVE__ISNAN */
875 /* Define to 1 if you have the `_isnanf' function. */
876 /* #undef _GLIBCXX_HAVE__ISNANF */
878 /* Define to 1 if you have the `_isnanl' function. */
879 /* #undef _GLIBCXX_HAVE__ISNANL */
881 /* Define to 1 if you have the `_ldexpf' function. */
882 /* #undef _GLIBCXX_HAVE__LDEXPF */
884 /* Define to 1 if you have the `_ldexpl' function. */
885 /* #undef _GLIBCXX_HAVE__LDEXPL */
887 /* Define to 1 if you have the `_log10f' function. */
888 /* #undef _GLIBCXX_HAVE__LOG10F */
890 /* Define to 1 if you have the `_log10l' function. */
891 /* #undef _GLIBCXX_HAVE__LOG10L */
893 /* Define to 1 if you have the `_logf' function. */
894 /* #undef _GLIBCXX_HAVE__LOGF */
896 /* Define to 1 if you have the `_logl' function. */
897 /* #undef _GLIBCXX_HAVE__LOGL */
899 /* Define to 1 if you have the `_modff' function. */
900 /* #undef _GLIBCXX_HAVE__MODFF */
902 /* Define to 1 if you have the `_modfl' function. */
903 /* #undef _GLIBCXX_HAVE__MODFL */
905 /* Define to 1 if you have the `_powf' function. */
906 /* #undef _GLIBCXX_HAVE__POWF */
908 /* Define to 1 if you have the `_powl' function. */
909 /* #undef _GLIBCXX_HAVE__POWL */
911 /* Define to 1 if you have the `_qfpclass' function. */
912 /* #undef _GLIBCXX_HAVE__QFPCLASS */
914 /* Define to 1 if you have the `_sincos' function. */
915 /* #undef _GLIBCXX_HAVE__SINCOS */
917 /* Define to 1 if you have the `_sincosf' function. */
918 /* #undef _GLIBCXX_HAVE__SINCOSF */
920 /* Define to 1 if you have the `_sincosl' function. */
921 /* #undef _GLIBCXX_HAVE__SINCOSL */
923 /* Define to 1 if you have the `_sinf' function. */
924 /* #undef _GLIBCXX_HAVE__SINF */
926 /* Define to 1 if you have the `_sinhf' function. */
927 /* #undef _GLIBCXX_HAVE__SINHF */
929 /* Define to 1 if you have the `_sinhl' function. */
930 /* #undef _GLIBCXX_HAVE__SINHL */
932 /* Define to 1 if you have the `_sinl' function. */
933 /* #undef _GLIBCXX_HAVE__SINL */
935 /* Define to 1 if you have the `_sqrtf' function. */
936 /* #undef _GLIBCXX_HAVE__SQRTF */
938 /* Define to 1 if you have the `_sqrtl' function. */
939 /* #undef _GLIBCXX_HAVE__SQRTL */
941 /* Define to 1 if you have the `_tanf' function. */
942 /* #undef _GLIBCXX_HAVE__TANF */
944 /* Define to 1 if you have the `_tanhf' function. */
945 /* #undef _GLIBCXX_HAVE__TANHF */
947 /* Define to 1 if you have the `_tanhl' function. */
948 /* #undef _GLIBCXX_HAVE__TANHL */
950 /* Define to 1 if you have the `_tanl' function. */
951 /* #undef _GLIBCXX_HAVE__TANL */
953 /* Define to 1 if you have the `__signbit' function. */
954 #define _GLIBCXX_HAVE___SIGNBIT 1
956 /* Define to 1 if you have the `__signbitf' function. */
957 #define _GLIBCXX_HAVE___SIGNBITF 1
959 /* Define to 1 if you have the `__signbitl' function. */
960 #define _GLIBCXX_HAVE___SIGNBITL 1
962 /* Define to the address where bug reports for this package should be sent. */
963 #define _GLIBCXX_PACKAGE_BUGREPORT ""
965 /* Define to the full name of this package. */
966 #define _GLIBCXX_PACKAGE_NAME "package-unused"
968 /* Define to the full name and version of this package. */
969 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
971 /* Define to the one symbol short name of this package. */
972 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
974 /* Define to the version of this package. */
975 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
977 /* Define to 1 if you have the ANSI C header files. */
978 #define STDC_HEADERS 1
980 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
981 #define _GLIBCXX_HOSTED 1
983 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
984 #define _GLIBCXX_SJLJ_EXCEPTIONS 1
986 // Systems that have certain non-standard functions prefixed with an
987 // underscore, we'll handle those here. Must come after config.h.in.
989 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
990 # define _GLIBCXX_HAVE_ISNAN 1
991 # define isnan _isnan
992 #endif
994 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
995 # define _GLIBCXX_HAVE_ISNANF 1
996 # define isnanf _isnanf
997 #endif
999 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1000 # define _GLIBCXX_HAVE_ISNANL 1
1001 # define isnanl _isnanl
1002 #endif
1004 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1005 # define _GLIBCXX_HAVE_ISINF 1
1006 # define isinf _isinf
1007 #endif
1009 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1010 # define _GLIBCXX_HAVE_ISINFF 1
1011 # define isinff _isinff
1012 #endif
1014 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1015 # define _GLIBCXX_HAVE_ISINFL 1
1016 # define isinfl _isinfl
1017 #endif
1019 #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN)
1020 # define _GLIBCXX_HAVE_COPYSIGN 1
1021 # define copysign _copysign
1022 #endif
1024 #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL)
1025 # define _GLIBCXX_HAVE_COPYSIGNL 1
1026 # define copysignl _copysignl
1027 #endif
1029 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1030 # define _GLIBCXX_HAVE_COSF 1
1031 # define cosf _cosf
1032 #endif
1034 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1035 # define _GLIBCXX_HAVE_ACOSF 1
1036 # define acosf _acosf
1037 #endif
1039 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1040 # define _GLIBCXX_HAVE_ACOSL 1
1041 # define acosl _acosl
1042 #endif
1044 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1045 # define _GLIBCXX_HAVE_ASINF 1
1046 # define asinf _asinf
1047 #endif
1049 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1050 # define _GLIBCXX_HAVE_ASINL 1
1051 # define asinl _asinl
1052 #endif
1054 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1055 # define _GLIBCXX_HAVE_ATANF 1
1056 # define atanf _atanf
1057 #endif
1059 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1060 # define _GLIBCXX_HAVE_ATANL 1
1061 # define atanl _atanl
1062 #endif
1064 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1065 # define _GLIBCXX_HAVE_CEILF 1
1066 # define aceil _ceilf
1067 #endif
1069 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1070 # define _GLIBCXX_HAVE_CEILL 1
1071 # define aceil _ceill
1072 #endif
1074 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1075 # define _GLIBCXX_HAVE_COSHF 1
1076 # define coshf _coshf
1077 #endif
1079 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1080 # define _GLIBCXX_HAVE_COSL 1
1081 # define cosl _cosl
1082 #endif
1084 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1085 # define _GLIBCXX_HAVE_LOGF 1
1086 # define logf _logf
1087 #endif
1089 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1090 # define _GLIBCXX_HAVE_COSHL 1
1091 # define coshl _coshl
1092 #endif
1094 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1095 # define _GLIBCXX_HAVE_EXPF 1
1096 # define expf _expf
1097 #endif
1099 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1100 # define _GLIBCXX_HAVE_EXPL 1
1101 # define expl _expl
1102 #endif
1104 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1105 # define _GLIBCXX_HAVE_FABSF 1
1106 # define fabsf _fabsf
1107 #endif
1109 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1110 # define _GLIBCXX_HAVE_FABSL 1
1111 # define fabsl _fabsl
1112 #endif
1114 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1115 # define _GLIBCXX_HAVE_FLOORF 1
1116 # define floorf _floorf
1117 #endif
1119 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1120 # define _GLIBCXX_HAVE_FLOORL 1
1121 # define floorl _floorl
1122 #endif
1124 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1125 # define _GLIBCXX_HAVE_FMODF 1
1126 # define fmodf _fmodf
1127 #endif
1129 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1130 # define _GLIBCXX_HAVE_FMODL 1
1131 # define fmodl _fmodl
1132 #endif
1134 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1135 # define _GLIBCXX_HAVE_FREXPF 1
1136 # define frexpf _frexpf
1137 #endif
1139 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1140 # define _GLIBCXX_HAVE_FREXPL 1
1141 # define frexpl _frexpl
1142 #endif
1144 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1145 # define _GLIBCXX_HAVE_LDEXPF 1
1146 # define ldexpf _ldexpf
1147 #endif
1149 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1150 # define _GLIBCXX_HAVE_LDEXPL 1
1151 # define ldexpl _ldexpl
1152 #endif
1154 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1155 # define _GLIBCXX_HAVE_LOG10F 1
1156 # define log10f _log10f
1157 #endif
1159 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1160 # define _GLIBCXX_HAVE_LOGL 1
1161 # define logl _logl
1162 #endif
1164 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1165 # define _GLIBCXX_HAVE_POWF 1
1166 # define powf _powf
1167 #endif
1169 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1170 # define _GLIBCXX_HAVE_LOG10L 1
1171 # define log10l _log10l
1172 #endif
1174 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1175 # define _GLIBCXX_HAVE_MODF 1
1176 # define modf _modf
1177 #endif
1179 #if defined (_GLIBCXX_HAVE__MODL) && ! defined (_GLIBCXX_HAVE_MODL)
1180 # define _GLIBCXX_HAVE_MODL 1
1181 # define modl _modl
1182 #endif
1184 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1185 # define _GLIBCXX_HAVE_SINF 1
1186 # define sinf _sinf
1187 #endif
1189 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1190 # define _GLIBCXX_HAVE_POWL 1
1191 # define powl _powl
1192 #endif
1194 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1195 # define _GLIBCXX_HAVE_SINHF 1
1196 # define sinhf _sinhf
1197 #endif
1199 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1200 # define _GLIBCXX_HAVE_SINL 1
1201 # define sinl _sinl
1202 #endif
1204 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1205 # define _GLIBCXX_HAVE_SQRTF 1
1206 # define sqrtf _sqrtf
1207 #endif
1209 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1210 # define _GLIBCXX_HAVE_SINHL 1
1211 # define sinhl _sinhl
1212 #endif
1214 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1215 # define _GLIBCXX_HAVE_TANF 1
1216 # define tanf _tanf
1217 #endif
1219 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1220 # define _GLIBCXX_HAVE_SQRTL 1
1221 # define sqrtl _sqrtl
1222 #endif
1224 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1225 # define _GLIBCXX_HAVE_TANHF 1
1226 # define tanhf _tanhf
1227 #endif
1229 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1230 # define _GLIBCXX_HAVE_TANF 1
1231 # define tanf _tanf
1232 #endif
1234 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1235 # define _GLIBCXX_HAVE_STRTOF 1
1236 # define strtof _strtof
1237 #endif
1239 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1240 # define _GLIBCXX_HAVE_TANHL 1
1241 # define tanhl _tanhl
1242 #endif
1244 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1245 # define _GLIBCXX_HAVE_STRTOLD 1
1246 # define strtold _strtold
1247 #endif
1249 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1250 # define _GLIBCXX_HAVE_SINCOS 1
1251 # define sincos _sincos
1252 #endif
1254 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1255 # define _GLIBCXX_HAVE_SINCOSF 1
1256 # define sincosf _sincosf
1257 #endif
1259 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1260 # define _GLIBCXX_HAVE_SINCOSL 1
1261 # define sincosl _sincosl
1262 #endif
1264 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1265 # define _GLIBCXX_HAVE_FINITE 1
1266 # define finite _finite
1267 #endif
1269 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1270 # define _GLIBCXX_HAVE_FINITEF 1
1271 # define finitef _finitef
1272 #endif
1274 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1275 # define _GLIBCXX_HAVE_FINITEL 1
1276 # define finitel _finitel
1277 #endif
1279 #if defined (_GLIBCXX_HAVE__QFINITE) && ! defined (_GLIBCXX_HAVE_QFINITE)
1280 # define _GLIBCXX_HAVE_QFINITE 1
1281 # define qfinite _qfinite
1282 #endif
1284 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1285 # define _GLIBCXX_HAVE_FPCLASS 1
1286 # define fpclass _fpclass
1287 #endif
1289 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1290 # define _GLIBCXX_HAVE_QFPCLASS 1
1291 # define qfpclass _qfpclass
1292 #endif
1294 #endif // _CXXCONFIG_