| 1 | // Predefined symbols and macros -*- C++ -*- |
|---|
| 2 | |
|---|
| 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. |
|---|
| 11 | |
|---|
| 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. |
|---|
| 16 | |
|---|
| 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. |
|---|
| 21 | |
|---|
| 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. |
|---|
| 30 | |
|---|
| 31 | #ifndef _CXXCONFIG |
|---|
| 32 | #define _CXXCONFIG 1 |
|---|
| 33 | |
|---|
| 34 | // Pick up any OS-specific definitions. |
|---|
| 35 | #include <bits/os_defines.h> |
|---|
| 36 | |
|---|
| 37 | // The current version of the C++ library in compressed ISO date format. |
|---|
| 38 | #define __GLIBCXX__ 20040906 |
|---|
| 39 | |
|---|
| 40 | // Allow use of "export template." This is currently not a feature |
|---|
| 41 | // that g++ supports. |
|---|
| 42 | // #define _GLIBCXX_EXPORT_TEMPLATE 1 |
|---|
| 43 | |
|---|
| 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 |
|---|
| 53 | |
|---|
| 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 { } |
|---|
| 58 | |
|---|
| 59 | namespace __gnu_debug |
|---|
| 60 | { |
|---|
| 61 | using namespace __gnu_debug_def; |
|---|
| 62 | } |
|---|
| 63 | |
|---|
| 64 | #ifdef _GLIBCXX_DEBUG |
|---|
| 65 | # define _GLIBCXX_STD __gnu_norm |
|---|
| 66 | namespace __gnu_norm |
|---|
| 67 | { |
|---|
| 68 | using namespace std; |
|---|
| 69 | } |
|---|
| 70 | namespace std |
|---|
| 71 | { |
|---|
| 72 | using namespace __gnu_debug_def __attribute__ ((strong)); |
|---|
| 73 | } |
|---|
| 74 | #else |
|---|
| 75 | # define _GLIBCXX_STD std |
|---|
| 76 | #endif |
|---|
| 77 | |
|---|
| 78 | |
|---|
| 79 | // The remainder of the prewritten config is automatic; all the |
|---|
| 80 | // user hooks are listed above. |
|---|
| 81 | |
|---|
| 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 |
|---|
| 88 | |
|---|
| 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) |
|---|
| 94 | |
|---|
| 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++ -*- |
|---|
| 99 | |
|---|
| 100 | // Defines libstdc++ version. |
|---|
| 101 | /* #undef _GLIBCXX_PACKAGE */ |
|---|
| 102 | /* #undef _GLIBCXX_VERSION */ |
|---|
| 103 | |
|---|
| 104 | // Needed for gettext. |
|---|
| 105 | /* #undef ENABLE_NLS */ |
|---|
| 106 | /* #undef _GLIBCXX_HAVE_CATGETS */ |
|---|
| 107 | /* #undef _GLIBCXX_HAVE_GETTEXT */ |
|---|
| 108 | /* #undef _GLIBCXX_HAVE_STPCPY */ |
|---|
| 109 | |
|---|
| 110 | // Include I/O support for 'long long' and 'unsigned long long'. |
|---|
| 111 | #define _GLIBCXX_USE_LONG_LONG 1 |
|---|
| 112 | |
|---|
| 113 | // Include support for 'long double'. |
|---|
| 114 | /* #undef _GLIBCXX_USE_LONG_DOUBLE */ |
|---|
| 115 | |
|---|
| 116 | // Define if C99 math functions (like fpclassify) should be exposed. |
|---|
| 117 | #define _GLIBCXX_USE_C99_MATH 1 |
|---|
| 118 | |
|---|
| 119 | // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed. |
|---|
| 120 | #define _GLIBCXX_USE_C99 1 |
|---|
| 121 | |
|---|
| 122 | // Define if code specialized for wchar_t should be used. |
|---|
| 123 | /* #undef _GLIBCXX_USE_WCHAR_T */ |
|---|
| 124 | |
|---|
| 125 | // Define if using setrlimit to set resource limits during 'make check'. |
|---|
| 126 | /* #undef _GLIBCXX_RES_LIMITS */ |
|---|
| 127 | |
|---|
| 128 | // Define to use concept checking code from the boost libraries. |
|---|
| 129 | /* #undef _GLIBCXX_CONCEPT_CHECKS */ |
|---|
| 130 | |
|---|
| 131 | // Define to use symbol versioning in the shared library. |
|---|
| 132 | #define _GLIBCXX_SYMVER 1 |
|---|
| 133 | |
|---|
| 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 |
|---|
| 144 | |
|---|
| 145 | // Define if LFS support is available. |
|---|
| 146 | #define _GLIBCXX_USE_LFS 1 |
|---|
| 147 | |
|---|
| 148 | // Define if NLS translations are to be used. |
|---|
| 149 | /* #undef _GLIBCXX_USE_NLS */ |
|---|
| 150 | |
|---|
| 151 | // Define if gthr-default.h exists (meaning that threading support is enabled). |
|---|
| 152 | #define _GLIBCXX_HAVE_GTHR_DEFAULT 1 |
|---|
| 153 | |
|---|
| 154 | // Define if the atan2f function exists. |
|---|
| 155 | #define _GLIBCXX_HAVE_ATAN2F 1 |
|---|
| 156 | |
|---|
| 157 | // Define if the atan2l function exists. |
|---|
| 158 | /* #undef _GLIBCXX_HAVE_ATAN2L */ |
|---|
| 159 | |
|---|
| 160 | // Define if the tanl function exists. |
|---|
| 161 | /* #undef _GLIBCXX_HAVE_TANL */ |
|---|
| 162 | |
|---|
| 163 | // Define if the copysignf function exists. |
|---|
| 164 | #define _GLIBCXX_HAVE_COPYSIGNF 1 |
|---|
| 165 | |
|---|
| 166 | // Define if getpagesize exists. |
|---|
| 167 | /* #undef _GLIBCXX_HAVE_GETPAGESIZE */ |
|---|
| 168 | |
|---|
| 169 | // Define if setenv exists. |
|---|
| 170 | /* #undef _GLIBCXX_HAVE_SETENV */ |
|---|
| 171 | |
|---|
| 172 | // Define if sigsetjmp exists. |
|---|
| 173 | /* #undef _GLIBCXX_HAVE_SIGSETJMP */ |
|---|
| 174 | |
|---|
| 175 | // Define if mbstate_t exists in wchar.h. |
|---|
| 176 | #define _GLIBCXX_HAVE_MBSTATE_T 1 |
|---|
| 177 | |
|---|
| 178 | // Define if you have the modff function. |
|---|
| 179 | #define _GLIBCXX_HAVE_MODFF 1 |
|---|
| 180 | |
|---|
| 181 | // Define if you have the modfl function. |
|---|
| 182 | /* #undef _GLIBCXX_HAVE_MODFL */ |
|---|
| 183 | |
|---|
| 184 | // Define if you have the expf function. |
|---|
| 185 | #define _GLIBCXX_HAVE_EXPF 1 |
|---|
| 186 | |
|---|
| 187 | // Define if you have the expl function. |
|---|
| 188 | /* #undef _GLIBCXX_HAVE_EXPL */ |
|---|
| 189 | |
|---|
| 190 | // Define if you have the hypot function. |
|---|
| 191 | #define _GLIBCXX_HAVE_HYPOT 1 |
|---|
| 192 | |
|---|
| 193 | // Define if you have the hypotf function. |
|---|
| 194 | #define _GLIBCXX_HAVE_HYPOTF 1 |
|---|
| 195 | |
|---|
| 196 | // Define if you have the hypotl function. |
|---|
| 197 | /* #undef _GLIBCXX_HAVE_HYPOTL */ |
|---|
| 198 | |
|---|
| 199 | // Define if the compiler/host combination has __builtin_abs |
|---|
| 200 | /* #undef _GLIBCXX_HAVE___BUILTIN_ABS */ |
|---|
| 201 | |
|---|
| 202 | // Define if the compiler/host combination has __builtin_labs |
|---|
| 203 | /* #undef _GLIBCXX_HAVE___BUILTIN_LABS */ |
|---|
| 204 | |
|---|
| 205 | // Define if the compiler/host combination has __builtin_cos |
|---|
| 206 | /* #undef _GLIBCXX_HAVE___BUILTIN_COS */ |
|---|
| 207 | |
|---|
| 208 | // Define if the compiler/host combination has __builtin_cosf |
|---|
| 209 | /* #undef _GLIBCXX_HAVE___BUILTIN_COSF */ |
|---|
| 210 | |
|---|
| 211 | // Define if the compiler/host combination has __builtin_cosl |
|---|
| 212 | /* #undef _GLIBCXX_HAVE___BUILTIN_COSL */ |
|---|
| 213 | |
|---|
| 214 | // Define if the compiler/host combination has __builtin_fabs |
|---|
| 215 | /* #undef _GLIBCXX_HAVE___BUILTIN_FABS */ |
|---|
| 216 | |
|---|
| 217 | // Define if the compiler/host combination has __builtin_fabsf |
|---|
| 218 | /* #undef _GLIBCXX_HAVE___BUILTIN_FABSF */ |
|---|
| 219 | |
|---|
| 220 | // Define if the compiler/host combination has __builtin_fabsl |
|---|
| 221 | /* #undef _GLIBCXX_HAVE___BUILTIN_FABSL */ |
|---|
| 222 | |
|---|
| 223 | // Define if the compiler/host combination has __builtin_sin |
|---|
| 224 | /* #undef _GLIBCXX_HAVE___BUILTIN_SIN */ |
|---|
| 225 | |
|---|
| 226 | // Define if the compiler/host combination has __builtin_sinf |
|---|
| 227 | /* #undef _GLIBCXX_HAVE___BUILTIN_SINF */ |
|---|
| 228 | |
|---|
| 229 | // Define if the compiler/host combination has __builtin_sinl |
|---|
| 230 | /* #undef _GLIBCXX_HAVE___BUILTIN_SINL */ |
|---|
| 231 | |
|---|
| 232 | // Define if the compiler/host combination has __builtin_sqrt |
|---|
| 233 | /* #undef _GLIBCXX_HAVE___BUILTIN_SQRT */ |
|---|
| 234 | |
|---|
| 235 | // Define if the compiler/host combination has __builtin_sqrtf |
|---|
| 236 | /* #undef _GLIBCXX_HAVE___BUILTIN_SQRTF */ |
|---|
| 237 | |
|---|
| 238 | // Define if the compiler/host combination has __builtin_sqrtl |
|---|
| 239 | /* #undef _GLIBCXX_HAVE___BUILTIN_SQRTL */ |
|---|
| 240 | |
|---|
| 241 | // Define if poll is available in <poll.h>. |
|---|
| 242 | #define _GLIBCXX_HAVE_POLL 1 |
|---|
| 243 | |
|---|
| 244 | // Define if S_ISREG (Posix) is available in <sys/stat.h>. |
|---|
| 245 | #define _GLIBCXX_HAVE_S_ISREG 1 |
|---|
| 246 | |
|---|
| 247 | // Define if S_IFREG is available in <sys/stat.h>. |
|---|
| 248 | /* #undef _GLIBCXX_HAVE_S_IFREG */ |
|---|
| 249 | |
|---|
| 250 | // Define if writev is available in <sys/uio.h>. |
|---|
| 251 | #define _GLIBCXX_HAVE_WRITEV 1 |
|---|
| 252 | |
|---|
| 253 | // Define if int64_t is available in <stdint.h>. |
|---|
| 254 | #define _GLIBCXX_HAVE_INT64_T 1 |
|---|
| 255 | |
|---|
| 256 | // Define if LC_MESSAGES is available in <locale.h>. |
|---|
| 257 | /* #undef _GLIBCXX_HAVE_LC_MESSAGES */ |
|---|
| 258 | |
|---|
| 259 | // Define if <float.h> exists. |
|---|
| 260 | #define _GLIBCXX_HAVE_FLOAT_H 1 |
|---|
| 261 | |
|---|
| 262 | // Define if modf is present in <math.h> |
|---|
| 263 | /* #undef _GLIBCXX_HAVE_MODF */ |
|---|
| 264 | |
|---|
| 265 | |
|---|
| 266 | /* Define to 1 if you have the `acosf' function. */ |
|---|
| 267 | #define _GLIBCXX_HAVE_ACOSF 1 |
|---|
| 268 | |
|---|
| 269 | /* Define to 1 if you have the `acosl' function. */ |
|---|
| 270 | /* #undef _GLIBCXX_HAVE_ACOSL */ |
|---|
| 271 | |
|---|
| 272 | /* Define to 1 if you have the `asinf' function. */ |
|---|
| 273 | #define _GLIBCXX_HAVE_ASINF 1 |
|---|
| 274 | |
|---|
| 275 | /* Define to 1 if you have the `asinl' function. */ |
|---|
| 276 | /* #undef _GLIBCXX_HAVE_ASINL */ |
|---|
| 277 | |
|---|
| 278 | /* Define to 1 if you have the `atan2f' function. */ |
|---|
| 279 | #define _GLIBCXX_HAVE_ATAN2F 1 |
|---|
| 280 | |
|---|
| 281 | /* Define to 1 if you have the `atan2l' function. */ |
|---|
| 282 | /* #undef _GLIBCXX_HAVE_ATAN2L */ |
|---|
| 283 | |
|---|
| 284 | /* Define to 1 if you have the `atanf' function. */ |
|---|
| 285 | #define _GLIBCXX_HAVE_ATANF 1 |
|---|
| 286 | |
|---|
| 287 | /* Define to 1 if you have the `atanl' function. */ |
|---|
| 288 | /* #undef _GLIBCXX_HAVE_ATANL */ |
|---|
| 289 | |
|---|
| 290 | /* Define to 1 if you have the `btowc' function. */ |
|---|
| 291 | #define _GLIBCXX_HAVE_BTOWC 1 |
|---|
| 292 | |
|---|
| 293 | /* Define to 1 if you have the `ceilf' function. */ |
|---|
| 294 | #define _GLIBCXX_HAVE_CEILF 1 |
|---|
| 295 | |
|---|
| 296 | /* Define to 1 if you have the `ceill' function. */ |
|---|
| 297 | /* #undef _GLIBCXX_HAVE_CEILL */ |
|---|
| 298 | |
|---|
| 299 | /* Define to 1 if you have the `copysign' function. */ |
|---|
| 300 | #define _GLIBCXX_HAVE_COPYSIGN 1 |
|---|
| 301 | |
|---|
| 302 | /* Define to 1 if you have the `copysignf' function. */ |
|---|
| 303 | #define _GLIBCXX_HAVE_COPYSIGNF 1 |
|---|
| 304 | |
|---|
| 305 | /* Define to 1 if you have the `copysignl' function. */ |
|---|
| 306 | /* #undef _GLIBCXX_HAVE_COPYSIGNL */ |
|---|
| 307 | |
|---|
| 308 | /* Define to 1 if you have the `cosf' function. */ |
|---|
| 309 | #define _GLIBCXX_HAVE_COSF 1 |
|---|
| 310 | |
|---|
| 311 | /* Define to 1 if you have the `coshf' function. */ |
|---|
| 312 | #define _GLIBCXX_HAVE_COSHF 1 |
|---|
| 313 | |
|---|
| 314 | /* Define to 1 if you have the `coshl' function. */ |
|---|
| 315 | /* #undef _GLIBCXX_HAVE_COSHL */ |
|---|
| 316 | |
|---|
| 317 | /* Define to 1 if you have the `cosl' function. */ |
|---|
| 318 | /* #undef _GLIBCXX_HAVE_COSL */ |
|---|
| 319 | |
|---|
| 320 | /* Define to 1 if you have the <endian.h> header file. */ |
|---|
| 321 | #define _GLIBCXX_HAVE_ENDIAN_H 1 |
|---|
| 322 | |
|---|
| 323 | /* Define to 1 if you have the `expf' function. */ |
|---|
| 324 | #define _GLIBCXX_HAVE_EXPF 1 |
|---|
| 325 | |
|---|
| 326 | /* Define to 1 if you have the `expl' function. */ |
|---|
| 327 | /* #undef _GLIBCXX_HAVE_EXPL */ |
|---|
| 328 | |
|---|
| 329 | /* Define to 1 if you have the `fabsf' function. */ |
|---|
| 330 | #define _GLIBCXX_HAVE_FABSF 1 |
|---|
| 331 | |
|---|
| 332 | /* Define to 1 if you have the `fabsl' function. */ |
|---|
| 333 | /* #undef _GLIBCXX_HAVE_FABSL */ |
|---|
| 334 | |
|---|
| 335 | /* Define to 1 if you have the `fgetwc' function. */ |
|---|
| 336 | #define _GLIBCXX_HAVE_FGETWC 1 |
|---|
| 337 | |
|---|
| 338 | /* Define to 1 if you have the `fgetws' function. */ |
|---|
| 339 | #define _GLIBCXX_HAVE_FGETWS 1 |
|---|
| 340 | |
|---|
| 341 | /* Define to 1 if you have the `finite' function. */ |
|---|
| 342 | #define _GLIBCXX_HAVE_FINITE 1 |
|---|
| 343 | |
|---|
| 344 | /* Define to 1 if you have the `finitef' function. */ |
|---|
| 345 | #define _GLIBCXX_HAVE_FINITEF 1 |
|---|
| 346 | |
|---|
| 347 | /* Define to 1 if you have the `finitel' function. */ |
|---|
| 348 | /* #undef _GLIBCXX_HAVE_FINITEL */ |
|---|
| 349 | |
|---|
| 350 | /* Define to 1 if you have the <float.h> header file. */ |
|---|
| 351 | #define _GLIBCXX_HAVE_FLOAT_H 1 |
|---|
| 352 | |
|---|
| 353 | /* Define to 1 if you have the `floorf' function. */ |
|---|
| 354 | #define _GLIBCXX_HAVE_FLOORF 1 |
|---|
| 355 | |
|---|
| 356 | /* Define to 1 if you have the `floorl' function. */ |
|---|
| 357 | /* #undef _GLIBCXX_HAVE_FLOORL */ |
|---|
| 358 | |
|---|
| 359 | /* Define to 1 if you have the `fmodf' function. */ |
|---|
| 360 | #define _GLIBCXX_HAVE_FMODF 1 |
|---|
| 361 | |
|---|
| 362 | /* Define to 1 if you have the `fmodl' function. */ |
|---|
| 363 | /* #undef _GLIBCXX_HAVE_FMODL */ |
|---|
| 364 | |
|---|
| 365 | /* Define to 1 if you have the `fpclass' function. */ |
|---|
| 366 | /* #undef _GLIBCXX_HAVE_FPCLASS */ |
|---|
| 367 | |
|---|
| 368 | /* Define to 1 if you have the `fputwc' function. */ |
|---|
| 369 | #define _GLIBCXX_HAVE_FPUTWC 1 |
|---|
| 370 | |
|---|
| 371 | /* Define to 1 if you have the `fputws' function. */ |
|---|
| 372 | #define _GLIBCXX_HAVE_FPUTWS 1 |
|---|
| 373 | |
|---|
| 374 | /* Define to 1 if you have the <fp.h> header file. */ |
|---|
| 375 | /* #undef _GLIBCXX_HAVE_FP_H */ |
|---|
| 376 | |
|---|
| 377 | /* Define to 1 if you have the `frexpf' function. */ |
|---|
| 378 | #define _GLIBCXX_HAVE_FREXPF 1 |
|---|
| 379 | |
|---|
| 380 | /* Define to 1 if you have the `frexpl' function. */ |
|---|
| 381 | /* #undef _GLIBCXX_HAVE_FREXPL */ |
|---|
| 382 | |
|---|
| 383 | /* Define to 1 if you have the `fwide' function. */ |
|---|
| 384 | #define _GLIBCXX_HAVE_FWIDE 1 |
|---|
| 385 | |
|---|
| 386 | /* Define to 1 if you have the `fwprintf' function. */ |
|---|
| 387 | #define _GLIBCXX_HAVE_FWPRINTF 1 |
|---|
| 388 | |
|---|
| 389 | /* Define to 1 if you have the `fwscanf' function. */ |
|---|
| 390 | #define _GLIBCXX_HAVE_FWSCANF 1 |
|---|
| 391 | |
|---|
| 392 | /* Define to 1 if you have the <gconv.h> header file. */ |
|---|
| 393 | /* #undef _GLIBCXX_HAVE_GCONV_H */ |
|---|
| 394 | |
|---|
| 395 | /* Define to 1 if you have the `getpagesize' function. */ |
|---|
| 396 | /* #undef _GLIBCXX_HAVE_GETPAGESIZE */ |
|---|
| 397 | |
|---|
| 398 | /* Define to 1 if you have the `getwc' function. */ |
|---|
| 399 | #define _GLIBCXX_HAVE_GETWC 1 |
|---|
| 400 | |
|---|
| 401 | /* Define to 1 if you have the `getwchar' function. */ |
|---|
| 402 | #define _GLIBCXX_HAVE_GETWCHAR 1 |
|---|
| 403 | |
|---|
| 404 | /* Define to 1 if you have the `hypot' function. */ |
|---|
| 405 | #define _GLIBCXX_HAVE_HYPOT 1 |
|---|
| 406 | |
|---|
| 407 | /* Define to 1 if you have the `hypotf' function. */ |
|---|
| 408 | #define _GLIBCXX_HAVE_HYPOTF 1 |
|---|
| 409 | |
|---|
| 410 | /* Define to 1 if you have the `hypotl' function. */ |
|---|
| 411 | /* #undef _GLIBCXX_HAVE_HYPOTL */ |
|---|
| 412 | |
|---|
| 413 | /* Define to 1 if you have the `iconv' function. */ |
|---|
| 414 | /* #undef _GLIBCXX_HAVE_ICONV */ |
|---|
| 415 | |
|---|
| 416 | /* Define to 1 if you have the `iconv_close' function. */ |
|---|
| 417 | /* #undef _GLIBCXX_HAVE_ICONV_CLOSE */ |
|---|
| 418 | |
|---|
| 419 | /* Define to 1 if you have the `iconv_open' function. */ |
|---|
| 420 | /* #undef _GLIBCXX_HAVE_ICONV_OPEN */ |
|---|
| 421 | |
|---|
| 422 | /* Define to 1 if you have the <ieeefp.h> header file. */ |
|---|
| 423 | /* #undef _GLIBCXX_HAVE_IEEEFP_H */ |
|---|
| 424 | |
|---|
| 425 | /* Define to 1 if you have the <inttypes.h> header file. */ |
|---|
| 426 | #define _GLIBCXX_HAVE_INTTYPES_H 1 |
|---|
| 427 | |
|---|
| 428 | /* Define to 1 if you have the `isinf' function. */ |
|---|
| 429 | #define _GLIBCXX_HAVE_ISINF 1 |
|---|
| 430 | |
|---|
| 431 | /* Define to 1 if you have the `isinff' function. */ |
|---|
| 432 | #define _GLIBCXX_HAVE_ISINFF 1 |
|---|
| 433 | |
|---|
| 434 | /* Define to 1 if you have the `isinfl' function. */ |
|---|
| 435 | /* #undef _GLIBCXX_HAVE_ISINFL */ |
|---|
| 436 | |
|---|
| 437 | /* Define to 1 if you have the `isnan' function. */ |
|---|
| 438 | #define _GLIBCXX_HAVE_ISNAN 1 |
|---|
| 439 | |
|---|
| 440 | /* Define to 1 if you have the `isnanf' function. */ |
|---|
| 441 | #define _GLIBCXX_HAVE_ISNANF 1 |
|---|
| 442 | |
|---|
| 443 | /* Define to 1 if you have the `isnanl' function. */ |
|---|
| 444 | /* #undef _GLIBCXX_HAVE_ISNANL */ |
|---|
| 445 | |
|---|
| 446 | /* Define to 1 if you have the `iswblank' function. */ |
|---|
| 447 | #define _GLIBCXX_HAVE_ISWBLANK 1 |
|---|
| 448 | |
|---|
| 449 | /* Define to 1 if you have the `ldexpf' function. */ |
|---|
| 450 | /* #undef _GLIBCXX_HAVE_LDEXPF */ |
|---|
| 451 | |
|---|
| 452 | /* Define to 1 if you have the `ldexpl' function. */ |
|---|
| 453 | /* #undef _GLIBCXX_HAVE_LDEXPL */ |
|---|
| 454 | |
|---|
| 455 | /* Define to 1 if you have the <libintl.h> header file. */ |
|---|
| 456 | /* #undef _GLIBCXX_HAVE_LIBINTL_H */ |
|---|
| 457 | |
|---|
| 458 | /* Define to 1 if you have the `m' library (-lm). */ |
|---|
| 459 | #define _GLIBCXX_HAVE_LIBM 1 |
|---|
| 460 | |
|---|
| 461 | /* Only used in build directory testsuite_hooks.h. */ |
|---|
| 462 | /* #undef _GLIBCXX_HAVE_LIMIT_AS */ |
|---|
| 463 | |
|---|
| 464 | /* Only used in build directory testsuite_hooks.h. */ |
|---|
| 465 | /* #undef _GLIBCXX_HAVE_LIMIT_DATA */ |
|---|
| 466 | |
|---|
| 467 | /* Only used in build directory testsuite_hooks.h. */ |
|---|
| 468 | /* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */ |
|---|
| 469 | |
|---|
| 470 | /* Only used in build directory testsuite_hooks.h. */ |
|---|
| 471 | /* #undef _GLIBCXX_HAVE_LIMIT_RSS */ |
|---|
| 472 | |
|---|
| 473 | /* Only used in build directory testsuite_hooks.h. */ |
|---|
| 474 | /* #undef _GLIBCXX_HAVE_LIMIT_VMEM */ |
|---|
| 475 | |
|---|
| 476 | /* Define to 1 if you have the <locale.h> header file. */ |
|---|
| 477 | #define _GLIBCXX_HAVE_LOCALE_H 1 |
|---|
| 478 | |
|---|
| 479 | /* Define to 1 if you have the `log10f' function. */ |
|---|
| 480 | #define _GLIBCXX_HAVE_LOG10F 1 |
|---|
| 481 | |
|---|
| 482 | /* Define to 1 if you have the `log10l' function. */ |
|---|
| 483 | /* #undef _GLIBCXX_HAVE_LOG10L */ |
|---|
| 484 | |
|---|
| 485 | /* Define to 1 if you have the `logf' function. */ |
|---|
| 486 | #define _GLIBCXX_HAVE_LOGF 1 |
|---|
| 487 | |
|---|
| 488 | /* Define to 1 if you have the `logl' function. */ |
|---|
| 489 | /* #undef _GLIBCXX_HAVE_LOGL */ |
|---|
| 490 | |
|---|
| 491 | /* Define to 1 if you have the <machine/endian.h> header file. */ |
|---|
| 492 | /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */ |
|---|
| 493 | |
|---|
| 494 | /* Define to 1 if you have the <machine/param.h> header file. */ |
|---|
| 495 | /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */ |
|---|
| 496 | |
|---|
| 497 | /* Define to 1 if you have the `mbrlen' function. */ |
|---|
| 498 | #define _GLIBCXX_HAVE_MBRLEN 1 |
|---|
| 499 | |
|---|
| 500 | /* Define to 1 if you have the `mbrtowc' function. */ |
|---|
| 501 | #define _GLIBCXX_HAVE_MBRTOWC 1 |
|---|
| 502 | |
|---|
| 503 | /* Define to 1 if you have the `mbsinit' function. */ |
|---|
| 504 | #define _GLIBCXX_HAVE_MBSINIT 1 |
|---|
| 505 | |
|---|
| 506 | /* Define to 1 if you have the `mbsrtowcs' function. */ |
|---|
| 507 | #define _GLIBCXX_HAVE_MBSRTOWCS 1 |
|---|
| 508 | |
|---|
| 509 | /* Define to 1 if you have the <memory.h> header file. */ |
|---|
| 510 | #define _GLIBCXX_HAVE_MEMORY_H 1 |
|---|
| 511 | |
|---|
| 512 | /* Define to 1 if you have a working `mmap' system call. */ |
|---|
| 513 | /* #undef _GLIBCXX_HAVE_MMAP */ |
|---|
| 514 | |
|---|
| 515 | /* Define to 1 if you have the `modff' function. */ |
|---|
| 516 | #define _GLIBCXX_HAVE_MODFF 1 |
|---|
| 517 | |
|---|
| 518 | /* Define to 1 if you have the `modfl' function. */ |
|---|
| 519 | /* #undef _GLIBCXX_HAVE_MODFL */ |
|---|
| 520 | |
|---|
| 521 | /* Define to 1 if you have the <nan.h> header file. */ |
|---|
| 522 | /* #undef _GLIBCXX_HAVE_NAN_H */ |
|---|
| 523 | |
|---|
| 524 | /* Define to 1 if you have the `nl_langinfo' function. */ |
|---|
| 525 | #define _GLIBCXX_HAVE_NL_LANGINFO 1 |
|---|
| 526 | |
|---|
| 527 | /* Define to 1 if you have the `powf' function. */ |
|---|
| 528 | /* #undef _GLIBCXX_HAVE_POWF */ |
|---|
| 529 | |
|---|
| 530 | /* Define to 1 if you have the `powl' function. */ |
|---|
| 531 | /* #undef _GLIBCXX_HAVE_POWL */ |
|---|
| 532 | |
|---|
| 533 | /* Define to 1 if you have the `putwc' function. */ |
|---|
| 534 | #define _GLIBCXX_HAVE_PUTWC 1 |
|---|
| 535 | |
|---|
| 536 | /* Define to 1 if you have the `putwchar' function. */ |
|---|
| 537 | #define _GLIBCXX_HAVE_PUTWCHAR 1 |
|---|
| 538 | |
|---|
| 539 | /* Define to 1 if you have the `qfpclass' function. */ |
|---|
| 540 | /* #undef _GLIBCXX_HAVE_QFPCLASS */ |
|---|
| 541 | |
|---|
| 542 | /* Define to 1 if you have the `setenv' function. */ |
|---|
| 543 | /* #undef _GLIBCXX_HAVE_SETENV */ |
|---|
| 544 | |
|---|
| 545 | /* Define if sigsetjmp is available. */ |
|---|
| 546 | /* #undef _GLIBCXX_HAVE_SIGSETJMP */ |
|---|
| 547 | |
|---|
| 548 | /* Define to 1 if you have the `sincos' function. */ |
|---|
| 549 | #define _GLIBCXX_HAVE_SINCOS 1 |
|---|
| 550 | |
|---|
| 551 | /* Define to 1 if you have the `sincosf' function. */ |
|---|
| 552 | #define _GLIBCXX_HAVE_SINCOSF 1 |
|---|
| 553 | |
|---|
| 554 | /* Define to 1 if you have the `sincosl' function. */ |
|---|
| 555 | /* #undef _GLIBCXX_HAVE_SINCOSL */ |
|---|
| 556 | |
|---|
| 557 | /* Define to 1 if you have the `sinf' function. */ |
|---|
| 558 | #define _GLIBCXX_HAVE_SINF 1 |
|---|
| 559 | |
|---|
| 560 | /* Define to 1 if you have the `sinhf' function. */ |
|---|
| 561 | #define _GLIBCXX_HAVE_SINHF 1 |
|---|
| 562 | |
|---|
| 563 | /* Define to 1 if you have the `sinhl' function. */ |
|---|
| 564 | /* #undef _GLIBCXX_HAVE_SINHL */ |
|---|
| 565 | |
|---|
| 566 | /* Define to 1 if you have the `sinl' function. */ |
|---|
| 567 | /* #undef _GLIBCXX_HAVE_SINL */ |
|---|
| 568 | |
|---|
| 569 | /* Define to 1 if you have the `sqrtf' function. */ |
|---|
| 570 | #define _GLIBCXX_HAVE_SQRTF 1 |
|---|
| 571 | |
|---|
| 572 | /* Define to 1 if you have the `sqrtl' function. */ |
|---|
| 573 | /* #undef _GLIBCXX_HAVE_SQRTL */ |
|---|
| 574 | |
|---|
| 575 | /* Define to 1 if you have the <stdint.h> header file. */ |
|---|
| 576 | #define _GLIBCXX_HAVE_STDINT_H 1 |
|---|
| 577 | |
|---|
| 578 | /* Define to 1 if you have the <stdlib.h> header file. */ |
|---|
| 579 | #define _GLIBCXX_HAVE_STDLIB_H 1 |
|---|
| 580 | |
|---|
| 581 | /* Define to 1 if you have the <strings.h> header file. */ |
|---|
| 582 | #define _GLIBCXX_HAVE_STRINGS_H 1 |
|---|
| 583 | |
|---|
| 584 | /* Define to 1 if you have the <string.h> header file. */ |
|---|
| 585 | #define _GLIBCXX_HAVE_STRING_H 1 |
|---|
| 586 | |
|---|
| 587 | /* Define to 1 if you have the `strtof' function. */ |
|---|
| 588 | /* #undef _GLIBCXX_HAVE_STRTOF */ |
|---|
| 589 | |
|---|
| 590 | /* Define to 1 if you have the `strtold' function. */ |
|---|
| 591 | /* #undef _GLIBCXX_HAVE_STRTOLD */ |
|---|
| 592 | |
|---|
| 593 | /* Define to 1 if you have the `swprintf' function. */ |
|---|
| 594 | #define _GLIBCXX_HAVE_SWPRINTF 1 |
|---|
| 595 | |
|---|
| 596 | /* Define to 1 if you have the `swscanf' function. */ |
|---|
| 597 | #define _GLIBCXX_HAVE_SWSCANF 1 |
|---|
| 598 | |
|---|
| 599 | /* Define to 1 if you have the <sys/filio.h> header file. */ |
|---|
| 600 | /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */ |
|---|
| 601 | |
|---|
| 602 | /* Define to 1 if you have the <sys/ioctl.h> header file. */ |
|---|
| 603 | #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 |
|---|
| 604 | |
|---|
| 605 | /* Define to 1 if you have the <sys/isa_defs.h> header file. */ |
|---|
| 606 | /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ |
|---|
| 607 | |
|---|
| 608 | /* Define to 1 if you have the <sys/machine.h> header file. */ |
|---|
| 609 | /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ |
|---|
| 610 | |
|---|
| 611 | /* Define to 1 if you have the <sys/param.h> header file. */ |
|---|
| 612 | /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */ |
|---|
| 613 | |
|---|
| 614 | /* Define to 1 if you have the <sys/resource.h> header file. */ |
|---|
| 615 | /* #undef _GLIBCXX_HAVE_SYS_RESOURCE_H */ |
|---|
| 616 | |
|---|
| 617 | /* Define to 1 if you have the <sys/stat.h> header file. */ |
|---|
| 618 | #define _GLIBCXX_HAVE_SYS_STAT_H 1 |
|---|
| 619 | |
|---|
| 620 | /* Define to 1 if you have the <sys/time.h> header file. */ |
|---|
| 621 | /* #undef _GLIBCXX_HAVE_SYS_TIME_H */ |
|---|
| 622 | |
|---|
| 623 | /* Define to 1 if you have the <sys/types.h> header file. */ |
|---|
| 624 | #define _GLIBCXX_HAVE_SYS_TYPES_H 1 |
|---|
| 625 | |
|---|
| 626 | /* Define to 1 if you have the <sys/uio.h> header file. */ |
|---|
| 627 | #define _GLIBCXX_HAVE_SYS_UIO_H 1 |
|---|
| 628 | |
|---|
| 629 | /* Define to 1 if you have the `tanf' function. */ |
|---|
| 630 | #define _GLIBCXX_HAVE_TANF 1 |
|---|
| 631 | |
|---|
| 632 | /* Define to 1 if you have the `tanhf' function. */ |
|---|
| 633 | #define _GLIBCXX_HAVE_TANHF 1 |
|---|
| 634 | |
|---|
| 635 | /* Define to 1 if you have the `tanhl' function. */ |
|---|
| 636 | /* #undef _GLIBCXX_HAVE_TANHL */ |
|---|
| 637 | |
|---|
| 638 | /* Define to 1 if you have the `tanl' function. */ |
|---|
| 639 | /* #undef _GLIBCXX_HAVE_TANL */ |
|---|
| 640 | |
|---|
| 641 | /* Define to 1 if you have the `ungetwc' function. */ |
|---|
| 642 | #define _GLIBCXX_HAVE_UNGETWC 1 |
|---|
| 643 | |
|---|
| 644 | /* Define to 1 if you have the <unistd.h> header file. */ |
|---|
| 645 | #define _GLIBCXX_HAVE_UNISTD_H 1 |
|---|
| 646 | |
|---|
| 647 | /* Define to 1 if you have the `vfwprintf' function. */ |
|---|
| 648 | #define _GLIBCXX_HAVE_VFWPRINTF 1 |
|---|
| 649 | |
|---|
| 650 | /* Define to 1 if you have the `vfwscanf' function. */ |
|---|
| 651 | #define _GLIBCXX_HAVE_VFWSCANF 1 |
|---|
| 652 | |
|---|
| 653 | /* Define to 1 if you have the `vswprintf' function. */ |
|---|
| 654 | #define _GLIBCXX_HAVE_VSWPRINTF 1 |
|---|
| 655 | |
|---|
| 656 | /* Define to 1 if you have the `vswscanf' function. */ |
|---|
| 657 | #define _GLIBCXX_HAVE_VSWSCANF 1 |
|---|
| 658 | |
|---|
| 659 | /* Define to 1 if you have the `vwprintf' function. */ |
|---|
| 660 | #define _GLIBCXX_HAVE_VWPRINTF 1 |
|---|
| 661 | |
|---|
| 662 | /* Define to 1 if you have the `vwscanf' function. */ |
|---|
| 663 | #define _GLIBCXX_HAVE_VWSCANF 1 |
|---|
| 664 | |
|---|
| 665 | /* Define to 1 if you have the <wchar.h> header file. */ |
|---|
| 666 | #define _GLIBCXX_HAVE_WCHAR_H 1 |
|---|
| 667 | |
|---|
| 668 | /* Define to 1 if you have the `wcrtomb' function. */ |
|---|
| 669 | #define _GLIBCXX_HAVE_WCRTOMB 1 |
|---|
| 670 | |
|---|
| 671 | /* Define to 1 if you have the `wcscat' function. */ |
|---|
| 672 | #define _GLIBCXX_HAVE_WCSCAT 1 |
|---|
| 673 | |
|---|
| 674 | /* Define to 1 if you have the `wcschr' function. */ |
|---|
| 675 | #define _GLIBCXX_HAVE_WCSCHR 1 |
|---|
| 676 | |
|---|
| 677 | /* Define to 1 if you have the `wcscmp' function. */ |
|---|
| 678 | #define _GLIBCXX_HAVE_WCSCMP 1 |
|---|
| 679 | |
|---|
| 680 | /* Define to 1 if you have the `wcscoll' function. */ |
|---|
| 681 | #define _GLIBCXX_HAVE_WCSCOLL 1 |
|---|
| 682 | |
|---|
| 683 | /* Define to 1 if you have the `wcscpy' function. */ |
|---|
| 684 | #define _GLIBCXX_HAVE_WCSCPY 1 |
|---|
| 685 | |
|---|
| 686 | /* Define to 1 if you have the `wcscspn' function. */ |
|---|
| 687 | #define _GLIBCXX_HAVE_WCSCSPN 1 |
|---|
| 688 | |
|---|
| 689 | /* Define to 1 if you have the `wcsftime' function. */ |
|---|
| 690 | #define _GLIBCXX_HAVE_WCSFTIME 1 |
|---|
| 691 | |
|---|
| 692 | /* Define to 1 if you have the `wcslen' function. */ |
|---|
| 693 | #define _GLIBCXX_HAVE_WCSLEN 1 |
|---|
| 694 | |
|---|
| 695 | /* Define to 1 if you have the `wcsncat' function. */ |
|---|
| 696 | #define _GLIBCXX_HAVE_WCSNCAT 1 |
|---|
| 697 | |
|---|
| 698 | /* Define to 1 if you have the `wcsncmp' function. */ |
|---|
| 699 | #define _GLIBCXX_HAVE_WCSNCMP 1 |
|---|
| 700 | |
|---|
| 701 | /* Define to 1 if you have the `wcsncpy' function. */ |
|---|
| 702 | #define _GLIBCXX_HAVE_WCSNCPY 1 |
|---|
| 703 | |
|---|
| 704 | /* Define to 1 if you have the `wcspbrk' function. */ |
|---|
| 705 | #define _GLIBCXX_HAVE_WCSPBRK 1 |
|---|
| 706 | |
|---|
| 707 | /* Define to 1 if you have the `wcsrchr' function. */ |
|---|
| 708 | #define _GLIBCXX_HAVE_WCSRCHR 1 |
|---|
| 709 | |
|---|
| 710 | /* Define to 1 if you have the `wcsrtombs' function. */ |
|---|
| 711 | #define _GLIBCXX_HAVE_WCSRTOMBS 1 |
|---|
| 712 | |
|---|
| 713 | /* Define to 1 if you have the `wcsspn' function. */ |
|---|
| 714 | #define _GLIBCXX_HAVE_WCSSPN 1 |
|---|
| 715 | |
|---|
| 716 | /* Define to 1 if you have the `wcsstr' function. */ |
|---|
| 717 | #define _GLIBCXX_HAVE_WCSSTR 1 |
|---|
| 718 | |
|---|
| 719 | /* Define to 1 if you have the `wcstod' function. */ |
|---|
| 720 | #define _GLIBCXX_HAVE_WCSTOD 1 |
|---|
| 721 | |
|---|
| 722 | /* Define to 1 if you have the `wcstof' function. */ |
|---|
| 723 | #define _GLIBCXX_HAVE_WCSTOF 1 |
|---|
| 724 | |
|---|
| 725 | /* Define to 1 if you have the `wcstok' function. */ |
|---|
| 726 | #define _GLIBCXX_HAVE_WCSTOK 1 |
|---|
| 727 | |
|---|
| 728 | /* Define to 1 if you have the `wcstol' function. */ |
|---|
| 729 | #define _GLIBCXX_HAVE_WCSTOL 1 |
|---|
| 730 | |
|---|
| 731 | /* Define to 1 if you have the `wcstoul' function. */ |
|---|
| 732 | #define _GLIBCXX_HAVE_WCSTOUL 1 |
|---|
| 733 | |
|---|
| 734 | /* Define to 1 if you have the `wcsxfrm' function. */ |
|---|
| 735 | #define _GLIBCXX_HAVE_WCSXFRM 1 |
|---|
| 736 | |
|---|
| 737 | /* Define to 1 if you have the `wctob' function. */ |
|---|
| 738 | #define _GLIBCXX_HAVE_WCTOB 1 |
|---|
| 739 | |
|---|
| 740 | /* Define to 1 if you have the <wctype.h> header file. */ |
|---|
| 741 | #define _GLIBCXX_HAVE_WCTYPE_H 1 |
|---|
| 742 | |
|---|
| 743 | /* Define to 1 if you have the `wmemchr' function. */ |
|---|
| 744 | #define _GLIBCXX_HAVE_WMEMCHR 1 |
|---|
| 745 | |
|---|
| 746 | /* Define to 1 if you have the `wmemcmp' function. */ |
|---|
| 747 | #define _GLIBCXX_HAVE_WMEMCMP 1 |
|---|
| 748 | |
|---|
| 749 | /* Define to 1 if you have the `wmemcpy' function. */ |
|---|
| 750 | #define _GLIBCXX_HAVE_WMEMCPY 1 |
|---|
| 751 | |
|---|
| 752 | /* Define to 1 if you have the `wmemmove' function. */ |
|---|
| 753 | #define _GLIBCXX_HAVE_WMEMMOVE 1 |
|---|
| 754 | |
|---|
| 755 | /* Define to 1 if you have the `wmemset' function. */ |
|---|
| 756 | #define _GLIBCXX_HAVE_WMEMSET 1 |
|---|
| 757 | |
|---|
| 758 | /* Define to 1 if you have the `wprintf' function. */ |
|---|
| 759 | #define _GLIBCXX_HAVE_WPRINTF 1 |
|---|
| 760 | |
|---|
| 761 | /* Define to 1 if you have the `wscanf' function. */ |
|---|
| 762 | #define _GLIBCXX_HAVE_WSCANF 1 |
|---|
| 763 | |
|---|
| 764 | /* Define to 1 if you have the `_acosf' function. */ |
|---|
| 765 | /* #undef _GLIBCXX_HAVE__ACOSF */ |
|---|
| 766 | |
|---|
| 767 | /* Define to 1 if you have the `_acosl' function. */ |
|---|
| 768 | /* #undef _GLIBCXX_HAVE__ACOSL */ |
|---|
| 769 | |
|---|
| 770 | /* Define to 1 if you have the `_asinf' function. */ |
|---|
| 771 | /* #undef _GLIBCXX_HAVE__ASINF */ |
|---|
| 772 | |
|---|
| 773 | /* Define to 1 if you have the `_asinl' function. */ |
|---|
| 774 | /* #undef _GLIBCXX_HAVE__ASINL */ |
|---|
| 775 | |
|---|
| 776 | /* Define to 1 if you have the `_atan2f' function. */ |
|---|
| 777 | /* #undef _GLIBCXX_HAVE__ATAN2F */ |
|---|
| 778 | |
|---|
| 779 | /* Define to 1 if you have the `_atan2l' function. */ |
|---|
| 780 | /* #undef _GLIBCXX_HAVE__ATAN2L */ |
|---|
| 781 | |
|---|
| 782 | /* Define to 1 if you have the `_atanf' function. */ |
|---|
| 783 | /* #undef _GLIBCXX_HAVE__ATANF */ |
|---|
| 784 | |
|---|
| 785 | /* Define to 1 if you have the `_atanl' function. */ |
|---|
| 786 | /* #undef _GLIBCXX_HAVE__ATANL */ |
|---|
| 787 | |
|---|
| 788 | /* Define to 1 if you have the `_ceilf' function. */ |
|---|
| 789 | /* #undef _GLIBCXX_HAVE__CEILF */ |
|---|
| 790 | |
|---|
| 791 | /* Define to 1 if you have the `_ceill' function. */ |
|---|
| 792 | /* #undef _GLIBCXX_HAVE__CEILL */ |
|---|
| 793 | |
|---|
| 794 | /* Define to 1 if you have the `_copysign' function. */ |
|---|
| 795 | /* #undef _GLIBCXX_HAVE__COPYSIGN */ |
|---|
| 796 | |
|---|
| 797 | /* Define to 1 if you have the `_copysignl' function. */ |
|---|
| 798 | /* #undef _GLIBCXX_HAVE__COPYSIGNL */ |
|---|
| 799 | |
|---|
| 800 | /* Define to 1 if you have the `_cosf' function. */ |
|---|
| 801 | /* #undef _GLIBCXX_HAVE__COSF */ |
|---|
| 802 | |
|---|
| 803 | /* Define to 1 if you have the `_coshf' function. */ |
|---|
| 804 | /* #undef _GLIBCXX_HAVE__COSHF */ |
|---|
| 805 | |
|---|
| 806 | /* Define to 1 if you have the `_coshl' function. */ |
|---|
| 807 | /* #undef _GLIBCXX_HAVE__COSHL */ |
|---|
| 808 | |
|---|
| 809 | /* Define to 1 if you have the `_cosl' function. */ |
|---|
| 810 | /* #undef _GLIBCXX_HAVE__COSL */ |
|---|
| 811 | |
|---|
| 812 | /* Define to 1 if you have the `_expf' function. */ |
|---|
| 813 | /* #undef _GLIBCXX_HAVE__EXPF */ |
|---|
| 814 | |
|---|
| 815 | /* Define to 1 if you have the `_expl' function. */ |
|---|
| 816 | /* #undef _GLIBCXX_HAVE__EXPL */ |
|---|
| 817 | |
|---|
| 818 | /* Define to 1 if you have the `_fabsf' function. */ |
|---|
| 819 | /* #undef _GLIBCXX_HAVE__FABSF */ |
|---|
| 820 | |
|---|
| 821 | /* Define to 1 if you have the `_fabsl' function. */ |
|---|
| 822 | /* #undef _GLIBCXX_HAVE__FABSL */ |
|---|
| 823 | |
|---|
| 824 | /* Define to 1 if you have the `_finite' function. */ |
|---|
| 825 | /* #undef _GLIBCXX_HAVE__FINITE */ |
|---|
| 826 | |
|---|
| 827 | /* Define to 1 if you have the `_finitef' function. */ |
|---|
| 828 | /* #undef _GLIBCXX_HAVE__FINITEF */ |
|---|
| 829 | |
|---|
| 830 | /* Define to 1 if you have the `_finitel' function. */ |
|---|
| 831 | /* #undef _GLIBCXX_HAVE__FINITEL */ |
|---|
| 832 | |
|---|
| 833 | /* Define to 1 if you have the `_floorf' function. */ |
|---|
| 834 | /* #undef _GLIBCXX_HAVE__FLOORF */ |
|---|
| 835 | |
|---|
| 836 | /* Define to 1 if you have the `_floorl' function. */ |
|---|
| 837 | /* #undef _GLIBCXX_HAVE__FLOORL */ |
|---|
| 838 | |
|---|
| 839 | /* Define to 1 if you have the `_fmodf' function. */ |
|---|
| 840 | /* #undef _GLIBCXX_HAVE__FMODF */ |
|---|
| 841 | |
|---|
| 842 | /* Define to 1 if you have the `_fmodl' function. */ |
|---|
| 843 | /* #undef _GLIBCXX_HAVE__FMODL */ |
|---|
| 844 | |
|---|
| 845 | /* Define to 1 if you have the `_fpclass' function. */ |
|---|
| 846 | /* #undef _GLIBCXX_HAVE__FPCLASS */ |
|---|
| 847 | |
|---|
| 848 | /* Define to 1 if you have the `_frexpf' function. */ |
|---|
| 849 | /* #undef _GLIBCXX_HAVE__FREXPF */ |
|---|
| 850 | |
|---|
| 851 | /* Define to 1 if you have the `_frexpl' function. */ |
|---|
| 852 | /* #undef _GLIBCXX_HAVE__FREXPL */ |
|---|
| 853 | |
|---|
| 854 | /* Define to 1 if you have the `_hypot' function. */ |
|---|
| 855 | /* #undef _GLIBCXX_HAVE__HYPOT */ |
|---|
| 856 | |
|---|
| 857 | /* Define to 1 if you have the `_hypotf' function. */ |
|---|
| 858 | /* #undef _GLIBCXX_HAVE__HYPOTF */ |
|---|
| 859 | |
|---|
| 860 | /* Define to 1 if you have the `_hypotl' function. */ |
|---|
| 861 | /* #undef _GLIBCXX_HAVE__HYPOTL */ |
|---|
| 862 | |
|---|
| 863 | /* Define to 1 if you have the `_isinf' function. */ |
|---|
| 864 | /* #undef _GLIBCXX_HAVE__ISINF */ |
|---|
| 865 | |
|---|
| 866 | /* Define to 1 if you have the `_isinff' function. */ |
|---|
| 867 | /* #undef _GLIBCXX_HAVE__ISINFF */ |
|---|
| 868 | |
|---|
| 869 | /* Define to 1 if you have the `_isinfl' function. */ |
|---|
| 870 | /* #undef _GLIBCXX_HAVE__ISINFL */ |
|---|
| 871 | |
|---|
| 872 | /* Define to 1 if you have the `_isnan' function. */ |
|---|
| 873 | /* #undef _GLIBCXX_HAVE__ISNAN */ |
|---|
| 874 | |
|---|
| 875 | /* Define to 1 if you have the `_isnanf' function. */ |
|---|
| 876 | /* #undef _GLIBCXX_HAVE__ISNANF */ |
|---|
| 877 | |
|---|
| 878 | /* Define to 1 if you have the `_isnanl' function. */ |
|---|
| 879 | /* #undef _GLIBCXX_HAVE__ISNANL */ |
|---|
| 880 | |
|---|
| 881 | /* Define to 1 if you have the `_ldexpf' function. */ |
|---|
| 882 | /* #undef _GLIBCXX_HAVE__LDEXPF */ |
|---|
| 883 | |
|---|
| 884 | /* Define to 1 if you have the `_ldexpl' function. */ |
|---|
| 885 | /* #undef _GLIBCXX_HAVE__LDEXPL */ |
|---|
| 886 | |
|---|
| 887 | /* Define to 1 if you have the `_log10f' function. */ |
|---|
| 888 | /* #undef _GLIBCXX_HAVE__LOG10F */ |
|---|
| 889 | |
|---|
| 890 | /* Define to 1 if you have the `_log10l' function. */ |
|---|
| 891 | /* #undef _GLIBCXX_HAVE__LOG10L */ |
|---|
| 892 | |
|---|
| 893 | /* Define to 1 if you have the `_logf' function. */ |
|---|
| 894 | /* #undef _GLIBCXX_HAVE__LOGF */ |
|---|
| 895 | |
|---|
| 896 | /* Define to 1 if you have the `_logl' function. */ |
|---|
| 897 | /* #undef _GLIBCXX_HAVE__LOGL */ |
|---|
| 898 | |
|---|
| 899 | /* Define to 1 if you have the `_modff' function. */ |
|---|
| 900 | /* #undef _GLIBCXX_HAVE__MODFF */ |
|---|
| 901 | |
|---|
| 902 | /* Define to 1 if you have the `_modfl' function. */ |
|---|
| 903 | /* #undef _GLIBCXX_HAVE__MODFL */ |
|---|
| 904 | |
|---|
| 905 | /* Define to 1 if you have the `_powf' function. */ |
|---|
| 906 | /* #undef _GLIBCXX_HAVE__POWF */ |
|---|
| 907 | |
|---|
| 908 | /* Define to 1 if you have the `_powl' function. */ |
|---|
| 909 | /* #undef _GLIBCXX_HAVE__POWL */ |
|---|
| 910 | |
|---|
| 911 | /* Define to 1 if you have the `_qfpclass' function. */ |
|---|
| 912 | /* #undef _GLIBCXX_HAVE__QFPCLASS */ |
|---|
| 913 | |
|---|
| 914 | /* Define to 1 if you have the `_sincos' function. */ |
|---|
| 915 | /* #undef _GLIBCXX_HAVE__SINCOS */ |
|---|
| 916 | |
|---|
| 917 | /* Define to 1 if you have the `_sincosf' function. */ |
|---|
| 918 | /* #undef _GLIBCXX_HAVE__SINCOSF */ |
|---|
| 919 | |
|---|
| 920 | /* Define to 1 if you have the `_sincosl' function. */ |
|---|
| 921 | /* #undef _GLIBCXX_HAVE__SINCOSL */ |
|---|
| 922 | |
|---|
| 923 | /* Define to 1 if you have the `_sinf' function. */ |
|---|
| 924 | /* #undef _GLIBCXX_HAVE__SINF */ |
|---|
| 925 | |
|---|
| 926 | /* Define to 1 if you have the `_sinhf' function. */ |
|---|
| 927 | /* #undef _GLIBCXX_HAVE__SINHF */ |
|---|
| 928 | |
|---|
| 929 | /* Define to 1 if you have the `_sinhl' function. */ |
|---|
| 930 | /* #undef _GLIBCXX_HAVE__SINHL */ |
|---|
| 931 | |
|---|
| 932 | /* Define to 1 if you have the `_sinl' function. */ |
|---|
| 933 | /* #undef _GLIBCXX_HAVE__SINL */ |
|---|
| 934 | |
|---|
| 935 | /* Define to 1 if you have the `_sqrtf' function. */ |
|---|
| 936 | /* #undef _GLIBCXX_HAVE__SQRTF */ |
|---|
| 937 | |
|---|
| 938 | /* Define to 1 if you have the `_sqrtl' function. */ |
|---|
| 939 | /* #undef _GLIBCXX_HAVE__SQRTL */ |
|---|
| 940 | |
|---|
| 941 | /* Define to 1 if you have the `_tanf' function. */ |
|---|
| 942 | /* #undef _GLIBCXX_HAVE__TANF */ |
|---|
| 943 | |
|---|
| 944 | /* Define to 1 if you have the `_tanhf' function. */ |
|---|
| 945 | /* #undef _GLIBCXX_HAVE__TANHF */ |
|---|
| 946 | |
|---|
| 947 | /* Define to 1 if you have the `_tanhl' function. */ |
|---|
| 948 | /* #undef _GLIBCXX_HAVE__TANHL */ |
|---|
| 949 | |
|---|
| 950 | /* Define to 1 if you have the `_tanl' function. */ |
|---|
| 951 | /* #undef _GLIBCXX_HAVE__TANL */ |
|---|
| 952 | |
|---|
| 953 | /* Define to 1 if you have the `__signbit' function. */ |
|---|
| 954 | #define _GLIBCXX_HAVE___SIGNBIT 1 |
|---|
| 955 | |
|---|
| 956 | /* Define to 1 if you have the `__signbitf' function. */ |
|---|
| 957 | #define _GLIBCXX_HAVE___SIGNBITF 1 |
|---|
| 958 | |
|---|
| 959 | /* Define to 1 if you have the `__signbitl' function. */ |
|---|
| 960 | /* #undef _GLIBCXX_HAVE___SIGNBITL */ |
|---|
| 961 | |
|---|
| 962 | /* Define to the address where bug reports for this package should be sent. */ |
|---|
| 963 | #define _GLIBCXX_PACKAGE_BUGREPORT "" |
|---|
| 964 | |
|---|
| 965 | /* Define to the full name of this package. */ |
|---|
| 966 | #define _GLIBCXX_PACKAGE_NAME "package-unused" |
|---|
| 967 | |
|---|
| 968 | /* Define to the full name and version of this package. */ |
|---|
| 969 | #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" |
|---|
| 970 | |
|---|
| 971 | /* Define to the one symbol short name of this package. */ |
|---|
| 972 | #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" |
|---|
| 973 | |
|---|
| 974 | /* Define to the version of this package. */ |
|---|
| 975 | #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" |
|---|
| 976 | |
|---|
| 977 | /* Define to 1 if you have the ANSI C header files. */ |
|---|
| 978 | #define STDC_HEADERS 1 |
|---|
| 979 | |
|---|
| 980 | /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ |
|---|
| 981 | #define _GLIBCXX_HOSTED 1 |
|---|
| 982 | |
|---|
| 983 | /* Define if the compiler is configured for setjmp/longjmp exceptions. */ |
|---|
| 984 | /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */ |
|---|
| 985 | // |
|---|
| 986 | // Systems that have certain non-standard functions prefixed with an |
|---|
| 987 | // underscore, we'll handle those here. Must come after config.h.in. |
|---|
| 988 | // |
|---|
| 989 | #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) |
|---|
| 990 | # define _GLIBCXX_HAVE_ISNAN 1 |
|---|
| 991 | # define isnan _isnan |
|---|
| 992 | #endif |
|---|
| 993 | |
|---|
| 994 | #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) |
|---|
| 995 | # define _GLIBCXX_HAVE_ISNANF 1 |
|---|
| 996 | # define isnanf _isnanf |
|---|
| 997 | #endif |
|---|
| 998 | |
|---|
| 999 | #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) |
|---|
| 1000 | # define _GLIBCXX_HAVE_ISNANL 1 |
|---|
| 1001 | # define isnanl _isnanl |
|---|
| 1002 | #endif |
|---|
| 1003 | |
|---|
| 1004 | #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) |
|---|
| 1005 | # define _GLIBCXX_HAVE_ISINF 1 |
|---|
| 1006 | # define isinf _isinf |
|---|
| 1007 | #endif |
|---|
| 1008 | |
|---|
| 1009 | #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) |
|---|
| 1010 | # define _GLIBCXX_HAVE_ISINFF 1 |
|---|
| 1011 | # define isinff _isinff |
|---|
| 1012 | #endif |
|---|
| 1013 | |
|---|
| 1014 | #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) |
|---|
| 1015 | # define _GLIBCXX_HAVE_ISINFL 1 |
|---|
| 1016 | # define isinfl _isinfl |
|---|
| 1017 | #endif |
|---|
| 1018 | |
|---|
| 1019 | #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN) |
|---|
| 1020 | # define _GLIBCXX_HAVE_COPYSIGN 1 |
|---|
| 1021 | # define copysign _copysign |
|---|
| 1022 | #endif |
|---|
| 1023 | |
|---|
| 1024 | #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL) |
|---|
| 1025 | # define _GLIBCXX_HAVE_COPYSIGNL 1 |
|---|
| 1026 | # define copysignl _copysignl |
|---|
| 1027 | #endif |
|---|
| 1028 | |
|---|
| 1029 | #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) |
|---|
| 1030 | # define _GLIBCXX_HAVE_COSF 1 |
|---|
| 1031 | # define cosf _cosf |
|---|
| 1032 | #endif |
|---|
| 1033 | |
|---|
| 1034 | #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) |
|---|
| 1035 | # define _GLIBCXX_HAVE_ACOSF 1 |
|---|
| 1036 | # define acosf _acosf |
|---|
| 1037 | #endif |
|---|
| 1038 | |
|---|
| 1039 | #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) |
|---|
| 1040 | # define _GLIBCXX_HAVE_ACOSL 1 |
|---|
| 1041 | # define acosl _acosl |
|---|
| 1042 | #endif |
|---|
| 1043 | |
|---|
| 1044 | #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) |
|---|
| 1045 | # define _GLIBCXX_HAVE_ASINF 1 |
|---|
| 1046 | # define asinf _asinf |
|---|
| 1047 | #endif |
|---|
| 1048 | |
|---|
| 1049 | #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) |
|---|
| 1050 | # define _GLIBCXX_HAVE_ASINL 1 |
|---|
| 1051 | # define asinl _asinl |
|---|
| 1052 | #endif |
|---|
| 1053 | |
|---|
| 1054 | #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) |
|---|
| 1055 | # define _GLIBCXX_HAVE_ATANF 1 |
|---|
| 1056 | # define atanf _atanf |
|---|
| 1057 | #endif |
|---|
| 1058 | |
|---|
| 1059 | #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) |
|---|
| 1060 | # define _GLIBCXX_HAVE_ATANL 1 |
|---|
| 1061 | # define atanl _atanl |
|---|
| 1062 | #endif |
|---|
| 1063 | |
|---|
| 1064 | #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) |
|---|
| 1065 | # define _GLIBCXX_HAVE_CEILF 1 |
|---|
| 1066 | # define aceil _ceilf |
|---|
| 1067 | #endif |
|---|
| 1068 | |
|---|
| 1069 | #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) |
|---|
| 1070 | # define _GLIBCXX_HAVE_CEILL 1 |
|---|
| 1071 | # define aceil _ceill |
|---|
| 1072 | #endif |
|---|
| 1073 | |
|---|
| 1074 | #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) |
|---|
| 1075 | # define _GLIBCXX_HAVE_COSHF 1 |
|---|
| 1076 | # define coshf _coshf |
|---|
| 1077 | #endif |
|---|
| 1078 | |
|---|
| 1079 | #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) |
|---|
| 1080 | # define _GLIBCXX_HAVE_COSL 1 |
|---|
| 1081 | # define cosl _cosl |
|---|
| 1082 | #endif |
|---|
| 1083 | |
|---|
| 1084 | #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) |
|---|
| 1085 | # define _GLIBCXX_HAVE_LOGF 1 |
|---|
| 1086 | # define logf _logf |
|---|
| 1087 | #endif |
|---|
| 1088 | |
|---|
| 1089 | #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) |
|---|
| 1090 | # define _GLIBCXX_HAVE_COSHL 1 |
|---|
| 1091 | # define coshl _coshl |
|---|
| 1092 | #endif |
|---|
| 1093 | |
|---|
| 1094 | #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) |
|---|
| 1095 | # define _GLIBCXX_HAVE_EXPF 1 |
|---|
| 1096 | # define expf _expf |
|---|
| 1097 | #endif |
|---|
| 1098 | |
|---|
| 1099 | #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) |
|---|
| 1100 | # define _GLIBCXX_HAVE_EXPL 1 |
|---|
| 1101 | # define expl _expl |
|---|
| 1102 | #endif |
|---|
| 1103 | |
|---|
| 1104 | #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) |
|---|
| 1105 | # define _GLIBCXX_HAVE_FABSF 1 |
|---|
| 1106 | # define fabsf _fabsf |
|---|
| 1107 | #endif |
|---|
| 1108 | |
|---|
| 1109 | #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) |
|---|
| 1110 | # define _GLIBCXX_HAVE_FABSL 1 |
|---|
| 1111 | # define fabsl _fabsl |
|---|
| 1112 | #endif |
|---|
| 1113 | |
|---|
| 1114 | #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) |
|---|
| 1115 | # define _GLIBCXX_HAVE_FLOORF 1 |
|---|
| 1116 | # define floorf _floorf |
|---|
| 1117 | #endif |
|---|
| 1118 | |
|---|
| 1119 | #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) |
|---|
| 1120 | # define _GLIBCXX_HAVE_FLOORL 1 |
|---|
| 1121 | # define floorl _floorl |
|---|
| 1122 | #endif |
|---|
| 1123 | |
|---|
| 1124 | #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) |
|---|
| 1125 | # define _GLIBCXX_HAVE_FMODF 1 |
|---|
| 1126 | # define fmodf _fmodf |
|---|
| 1127 | #endif |
|---|
| 1128 | |
|---|
| 1129 | #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) |
|---|
| 1130 | # define _GLIBCXX_HAVE_FMODL 1 |
|---|
| 1131 | # define fmodl _fmodl |
|---|
| 1132 | #endif |
|---|
| 1133 | |
|---|
| 1134 | #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) |
|---|
| 1135 | # define _GLIBCXX_HAVE_FREXPF 1 |
|---|
| 1136 | # define frexpf _frexpf |
|---|
| 1137 | #endif |
|---|
| 1138 | |
|---|
| 1139 | #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) |
|---|
| 1140 | # define _GLIBCXX_HAVE_FREXPL 1 |
|---|
| 1141 | # define frexpl _frexpl |
|---|
| 1142 | #endif |
|---|
| 1143 | |
|---|
| 1144 | #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) |
|---|
| 1145 | # define _GLIBCXX_HAVE_LDEXPF 1 |
|---|
| 1146 | # define ldexpf _ldexpf |
|---|
| 1147 | #endif |
|---|
| 1148 | |
|---|
| 1149 | #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) |
|---|
| 1150 | # define _GLIBCXX_HAVE_LDEXPL 1 |
|---|
| 1151 | # define ldexpl _ldexpl |
|---|
| 1152 | #endif |
|---|
| 1153 | |
|---|
| 1154 | #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) |
|---|
| 1155 | # define _GLIBCXX_HAVE_LOG10F 1 |
|---|
| 1156 | # define log10f _log10f |
|---|
| 1157 | #endif |
|---|
| 1158 | |
|---|
| 1159 | #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) |
|---|
| 1160 | # define _GLIBCXX_HAVE_LOGL 1 |
|---|
| 1161 | # define logl _logl |
|---|
| 1162 | #endif |
|---|
| 1163 | |
|---|
| 1164 | #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) |
|---|
| 1165 | # define _GLIBCXX_HAVE_POWF 1 |
|---|
| 1166 | # define powf _powf |
|---|
| 1167 | #endif |
|---|
| 1168 | |
|---|
| 1169 | #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) |
|---|
| 1170 | # define _GLIBCXX_HAVE_LOG10L 1 |
|---|
| 1171 | # define log10l _log10l |
|---|
| 1172 | #endif |
|---|
| 1173 | |
|---|
| 1174 | #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) |
|---|
| 1175 | # define _GLIBCXX_HAVE_MODF 1 |
|---|
| 1176 | # define modf _modf |
|---|
| 1177 | #endif |
|---|
| 1178 | |
|---|
| 1179 | #if defined (_GLIBCXX_HAVE__MODL) && ! defined (_GLIBCXX_HAVE_MODL) |
|---|
| 1180 | # define _GLIBCXX_HAVE_MODL 1 |
|---|
| 1181 | # define modl _modl |
|---|
| 1182 | #endif |
|---|
| 1183 | |
|---|
| 1184 | #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) |
|---|
| 1185 | # define _GLIBCXX_HAVE_SINF 1 |
|---|
| 1186 | # define sinf _sinf |
|---|
| 1187 | #endif |
|---|
| 1188 | |
|---|
| 1189 | #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) |
|---|
| 1190 | # define _GLIBCXX_HAVE_POWL 1 |
|---|
| 1191 | # define powl _powl |
|---|
| 1192 | #endif |
|---|
| 1193 | |
|---|
| 1194 | #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) |
|---|
| 1195 | # define _GLIBCXX_HAVE_SINHF 1 |
|---|
| 1196 | # define sinhf _sinhf |
|---|
| 1197 | #endif |
|---|
| 1198 | |
|---|
| 1199 | #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) |
|---|
| 1200 | # define _GLIBCXX_HAVE_SINL 1 |
|---|
| 1201 | # define sinl _sinl |
|---|
| 1202 | #endif |
|---|
| 1203 | |
|---|
| 1204 | #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) |
|---|
| 1205 | # define _GLIBCXX_HAVE_SQRTF 1 |
|---|
| 1206 | # define sqrtf _sqrtf |
|---|
| 1207 | #endif |
|---|
| 1208 | |
|---|
| 1209 | #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) |
|---|
| 1210 | # define _GLIBCXX_HAVE_SINHL 1 |
|---|
| 1211 | # define sinhl _sinhl |
|---|
| 1212 | #endif |
|---|
| 1213 | |
|---|
| 1214 | #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) |
|---|
| 1215 | # define _GLIBCXX_HAVE_TANF 1 |
|---|
| 1216 | # define tanf _tanf |
|---|
| 1217 | #endif |
|---|
| 1218 | |
|---|
| 1219 | #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) |
|---|
| 1220 | # define _GLIBCXX_HAVE_SQRTL 1 |
|---|
| 1221 | # define sqrtl _sqrtl |
|---|
| 1222 | #endif |
|---|
| 1223 | |
|---|
| 1224 | #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) |
|---|
| 1225 | # define _GLIBCXX_HAVE_TANHF 1 |
|---|
| 1226 | # define tanhf _tanhf |
|---|
| 1227 | #endif |
|---|
| 1228 | |
|---|
| 1229 | #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) |
|---|
| 1230 | # define _GLIBCXX_HAVE_TANF 1 |
|---|
| 1231 | # define tanf _tanf |
|---|
| 1232 | #endif |
|---|
| 1233 | |
|---|
| 1234 | #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) |
|---|
| 1235 | # define _GLIBCXX_HAVE_STRTOF 1 |
|---|
| 1236 | # define strtof _strtof |
|---|
| 1237 | #endif |
|---|
| 1238 | |
|---|
| 1239 | #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) |
|---|
| 1240 | # define _GLIBCXX_HAVE_TANHL 1 |
|---|
| 1241 | # define tanhl _tanhl |
|---|
| 1242 | #endif |
|---|
| 1243 | |
|---|
| 1244 | #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) |
|---|
| 1245 | # define _GLIBCXX_HAVE_STRTOLD 1 |
|---|
| 1246 | # define strtold _strtold |
|---|
| 1247 | #endif |
|---|
| 1248 | |
|---|
| 1249 | #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) |
|---|
| 1250 | # define _GLIBCXX_HAVE_SINCOS 1 |
|---|
| 1251 | # define sincos _sincos |
|---|
| 1252 | #endif |
|---|
| 1253 | |
|---|
| 1254 | #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) |
|---|
| 1255 | # define _GLIBCXX_HAVE_SINCOSF 1 |
|---|
| 1256 | # define sincosf _sincosf |
|---|
| 1257 | #endif |
|---|
| 1258 | |
|---|
| 1259 | #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) |
|---|
| 1260 | # define _GLIBCXX_HAVE_SINCOSL 1 |
|---|
| 1261 | # define sincosl _sincosl |
|---|
| 1262 | #endif |
|---|
| 1263 | |
|---|
| 1264 | #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) |
|---|
| 1265 | # define _GLIBCXX_HAVE_FINITE 1 |
|---|
| 1266 | # define finite _finite |
|---|
| 1267 | #endif |
|---|
| 1268 | |
|---|
| 1269 | #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) |
|---|
| 1270 | # define _GLIBCXX_HAVE_FINITEF 1 |
|---|
| 1271 | # define finitef _finitef |
|---|
| 1272 | #endif |
|---|
| 1273 | |
|---|
| 1274 | #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) |
|---|
| 1275 | # define _GLIBCXX_HAVE_FINITEL 1 |
|---|
| 1276 | # define finitel _finitel |
|---|
| 1277 | #endif |
|---|
| 1278 | |
|---|
| 1279 | #if defined (_GLIBCXX_HAVE__QFINITE) && ! defined (_GLIBCXX_HAVE_QFINITE) |
|---|
| 1280 | # define _GLIBCXX_HAVE_QFINITE 1 |
|---|
| 1281 | # define qfinite _qfinite |
|---|
| 1282 | #endif |
|---|
| 1283 | |
|---|
| 1284 | #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) |
|---|
| 1285 | # define _GLIBCXX_HAVE_FPCLASS 1 |
|---|
| 1286 | # define fpclass _fpclass |
|---|
| 1287 | #endif |
|---|
| 1288 | |
|---|
| 1289 | #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) |
|---|
| 1290 | # define _GLIBCXX_HAVE_QFPCLASS 1 |
|---|
| 1291 | # define qfpclass _qfpclass |
|---|
| 1292 | #endif |
|---|
| 1293 | |
|---|
| 1294 | #endif // _CXXCONFIG_ |
|---|