Advertisement
Guest User

c++config.h

a guest
Jun 8th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 39.02 KB | None | 0 0
  1. // Predefined symbols and macros -*- C++ -*-
  2.  
  3. // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
  4. // 2006, 2007
  5. // Free Software Foundation, Inc.
  6. //
  7. // This file is part of the GNU ISO C++ Library.  This library is free
  8. // software; you can redistribute it and/or modify it under the
  9. // terms of the GNU General Public License as published by the
  10. // Free Software Foundation; either version 2, or (at your option)
  11. // any later version.
  12.  
  13. // This library is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. // GNU General Public License for more details.
  17.  
  18. // You should have received a copy of the GNU General Public License along
  19. // with this library; see the file COPYING.  If not, write to the Free
  20. // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  21. // USA.
  22.  
  23. // As a special exception, you may use this file as part of a free software
  24. // library without restriction.  Specifically, if other files instantiate
  25. // templates or use macros or inline functions from this file, or you compile
  26. // this file and link it with other files to produce an executable, this
  27. // file does not by itself cause the resulting executable to be covered by
  28. // the GNU General Public License.  This exception does not however
  29. // invalidate any other reasons why the executable file might be covered by
  30. // the GNU General Public License.
  31.  
  32. /** @file c++config.h
  33.  *  This is an internal header file, included by other library headers.
  34.  *  You should not attempt to use it directly.
  35.  */
  36.  
  37. #ifndef _CXXCONFIG
  38. #define _CXXCONFIG 1
  39.  
  40. // Pick up any OS-specific definitions.
  41. //#include <os_defines.h>
  42. #include <C:\Users\1\Desktop\gb_algs-master\os_defines.h>
  43.  
  44. // The current version of the C++ library in compressed ISO date format.
  45. #define __GLIBCXX__ 20070719
  46.  
  47. // Macros for visibility.
  48. # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
  49.  
  50. #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
  51. #define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
  52. #else
  53. #define _GLIBCXX_VISIBILITY(V)
  54. #endif
  55.  
  56. // Macros for controlling various namespace association schemes and modes.
  57. #ifdef _GLIBCXX_DEBUG
  58. # define _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 1
  59. #endif
  60.  
  61. # define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION 0
  62.  
  63. #ifndef _GLIBCXX_VISIBILITY_DEFAULT
  64. #define _GLIBCXX_VISIBILITY_DEFAULT _GLIBCXX_VISIBILITY(default)
  65. #endif
  66.  
  67. #ifndef _GLIBCXX_VISIBILITY_HIDDEN
  68. #define _GLIBCXX_VISIBILITY_HIDDEN _GLIBCXX_VISIBILITY(hidden)
  69. #endif
  70.  
  71. // Macros for namespace scope.
  72. // _GLIBCXX_BEGIN_NAMESPACE
  73. // _GLIBCXX_END_NAMESPACE
  74. // _GLIBCXX_BEGIN_NESTED_NAMESPACE
  75. // _GLIBCXX_END_NESTED_NAMESPACE
  76. #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  77. # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)  namespace X { namespace Y _GLIBCXX_VISIBILITY_DEFAULT {
  78. # define _GLIBCXX_END_NESTED_NAMESPACE } }
  79. # define _GLIBCXX_BEGIN_NAMESPACE(X) _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, _6)
  80. # define _GLIBCXX_END_NAMESPACE _GLIBCXX_END_NESTED_NAMESPACE
  81. #else
  82. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_DEFAULT {
  83. # define _GLIBCXX_END_NAMESPACE }
  84. # if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
  85. #  define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) namespace X { namespace Y _GLIBCXX_VISIBILITY_DEFAULT {
  86. #  define _GLIBCXX_END_NESTED_NAMESPACE  } }
  87. # else
  88. #  define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) _GLIBCXX_BEGIN_NAMESPACE(X)
  89. #  define _GLIBCXX_END_NESTED_NAMESPACE _GLIBCXX_END_NAMESPACE
  90. # endif
  91. #endif
  92.  
  93. // Namespace associations for versioning mode.
  94. #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  95. namespace std
  96. {
  97.   namespace _6 { }
  98.   using namespace _6 __attribute__ ((strong));
  99. }
  100.  
  101. // In addition, other supported namespace configurations.
  102. namespace __gnu_cxx
  103. {
  104.   namespace _6 { }
  105.   using namespace _6 __attribute__ ((strong));
  106. }
  107.  
  108. namespace std
  109. {
  110.   namespace tr1
  111.   {
  112.     namespace _6 { }
  113.     using namespace _6 __attribute__ ((strong));
  114.   }
  115. }
  116. #endif
  117.  
  118. // Namespace associations for debug mode.
  119. #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
  120. namespace std
  121. {
  122.   namespace __norm { }
  123.   namespace __debug { }
  124.   using namespace __debug __attribute__ ((strong));
  125. }
  126.  
  127. namespace __gnu_cxx
  128. {
  129.   namespace __norm { }
  130.   namespace __debug { }
  131.   using namespace __debug __attribute__ ((strong));
  132. }
  133.  
  134. # define _GLIBCXX_STD __norm
  135. # define _GLIBCXX_EXT __norm
  136. # define _GLIBCXX_EXTERN_TEMPLATE 0
  137. # if __NO_INLINE__ && !__GXX_WEAK__
  138. #  warning debug mode without inlining may fail due to lack of weak symbols
  139. # endif
  140. #else
  141. #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  142. # define _GLIBCXX_STD _6
  143. # define _GLIBCXX_EXT _6
  144. #else
  145. # define _GLIBCXX_STD std
  146. # define _GLIBCXX_EXT __gnu_cxx
  147. #endif
  148. #endif
  149.  
  150. /* Define if compatibility should be provided for -mlong-double-64. */
  151. #undef _GLIBCXX_LONG_DOUBLE_COMPAT
  152.  
  153. // XXX GLIBCXX_ABI Deprecated
  154. // Namespace associations for long double 128 mode.
  155. _GLIBCXX_BEGIN_NAMESPACE(std)
  156. #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
  157. # define _GLIBCXX_LDBL_NAMESPACE __gnu_cxx_ldbl128::
  158. # define _GLIBCXX_BEGIN_LDBL_NAMESPACE namespace __gnu_cxx_ldbl128 {
  159. # define _GLIBCXX_END_LDBL_NAMESPACE }
  160.   namespace __gnu_cxx_ldbl128 { }
  161.   using namespace __gnu_cxx_ldbl128 __attribute__((__strong__));
  162. #else
  163. # define _GLIBCXX_LDBL_NAMESPACE
  164. # define _GLIBCXX_BEGIN_LDBL_NAMESPACE
  165. # define _GLIBCXX_END_LDBL_NAMESPACE
  166. #endif
  167. _GLIBCXX_END_NAMESPACE
  168.  
  169.  
  170. // Allow use of "export template." This is currently not a feature
  171. // that g++ supports.
  172. // #define _GLIBCXX_EXPORT_TEMPLATE 1
  173.  
  174. // Allow use of the GNU syntax extension, "extern template." This
  175. // extension is fully documented in the g++ manual, but in a nutshell,
  176. // it inhibits all implicit instantiations and is used throughout the
  177. // library to avoid multiple weak definitions for required types that
  178. // are already explicitly instantiated in the library binary. This
  179. // substantially reduces the binary size of resulting executables.
  180. #ifndef _GLIBCXX_EXTERN_TEMPLATE
  181. # define _GLIBCXX_EXTERN_TEMPLATE 1
  182. #endif
  183.  
  184.  
  185. // Certain function definitions that are meant to be overridable from
  186. // user code are decorated with this macro.  For some targets, this
  187. // macro causes these definitions to be weak.
  188. #ifndef _GLIBCXX_WEAK_DEFINITION
  189. # define _GLIBCXX_WEAK_DEFINITION
  190. #endif
  191.  
  192. // The remainder of the prewritten config is automatic; all the
  193. // user hooks are listed above.
  194.  
  195. // Create a boolean flag to be used to determine if --fast-math is set.
  196. #ifdef __FAST_MATH__
  197. # define _GLIBCXX_FAST_MATH 1
  198. #else
  199. # define _GLIBCXX_FAST_MATH 0
  200. #endif
  201.  
  202. // This marks string literals in header files to be extracted for eventual
  203. // translation.  It is primarily used for messages in thrown exceptions; see
  204. // src/functexcept.cc.  We use __N because the more traditional _N is used
  205. // for something else under certain OSes (see BADNAMES).
  206. #define __N(msgid)     (msgid)
  207.  
  208. // For example, <windows.h> is known to #define min and max as macros...
  209. #undef min
  210. #undef max
  211.  
  212. // End of prewritten config; the discovered settings follow.
  213. /* config.h.  Generated by configure.  */
  214. /* config.h.in.  Generated from configure.ac by autoheader.  */
  215.  
  216. /* Define to 1 if you have the `acosf' function. */
  217. #define _GLIBCXX_HAVE_ACOSF 1
  218.  
  219. /* Define to 1 if you have the `acosl' function. */
  220. #define _GLIBCXX_HAVE_ACOSL 1
  221.  
  222. /* Define to 1 if you have the `asinf' function. */
  223. #define _GLIBCXX_HAVE_ASINF 1
  224.  
  225. /* Define to 1 if you have the `asinl' function. */
  226. #define _GLIBCXX_HAVE_ASINL 1
  227.  
  228. /* Define to 1 if you have the `atan2f' function. */
  229. #define _GLIBCXX_HAVE_ATAN2F 1
  230.  
  231. /* Define to 1 if you have the `atan2l' function. */
  232. #define _GLIBCXX_HAVE_ATAN2L 1
  233.  
  234. /* Define to 1 if you have the `atanf' function. */
  235. #define _GLIBCXX_HAVE_ATANF 1
  236.  
  237. /* Define to 1 if you have the `atanl' function. */
  238. #define _GLIBCXX_HAVE_ATANL 1
  239.  
  240. /* Define to 1 if you have the `ceilf' function. */
  241. #define _GLIBCXX_HAVE_CEILF 1
  242.  
  243. /* Define to 1 if you have the `ceill' function. */
  244. #define _GLIBCXX_HAVE_CEILL 1
  245.  
  246. /* Define to 1 if you have the <complex.h> header file. */
  247. #define _GLIBCXX_HAVE_COMPLEX_H 1
  248.  
  249. /* Define to 1 if you have the `copysign' function. */
  250. #define _GLIBCXX_HAVE_COPYSIGN 1
  251.  
  252. /* Define to 1 if you have the `copysignf' function. */
  253. #define _GLIBCXX_HAVE_COPYSIGNF 1
  254.  
  255. /* Define to 1 if you have the `copysignl' function. */
  256. #define _GLIBCXX_HAVE_COPYSIGNL 1
  257.  
  258. /* Define to 1 if you have the `cosf' function. */
  259. #define _GLIBCXX_HAVE_COSF 1
  260.  
  261. /* Define to 1 if you have the `coshf' function. */
  262. #define _GLIBCXX_HAVE_COSHF 1
  263.  
  264. /* Define to 1 if you have the `coshl' function. */
  265. #define _GLIBCXX_HAVE_COSHL 1
  266.  
  267. /* Define to 1 if you have the `cosl' function. */
  268. #define _GLIBCXX_HAVE_COSL 1
  269.  
  270. /* Define to 1 if you have the <endian.h> header file. */
  271. /* #undef _GLIBCXX_HAVE_ENDIAN_H */
  272.  
  273. /* Define to 1 if you have the `expf' function. */
  274. #define _GLIBCXX_HAVE_EXPF 1
  275.  
  276. /* Define to 1 if you have the `expl' function. */
  277. #define _GLIBCXX_HAVE_EXPL 1
  278.  
  279. /* Define to 1 if you have the `fabsf' function. */
  280. #define _GLIBCXX_HAVE_FABSF 1
  281.  
  282. /* Define to 1 if you have the `fabsl' function. */
  283. #define _GLIBCXX_HAVE_FABSL 1
  284.  
  285. /* Define to 1 if you have the <fenv.h> header file. */
  286. #define _GLIBCXX_HAVE_FENV_H 1
  287.  
  288. /* Define to 1 if you have the `finite' function. */
  289. #define _GLIBCXX_HAVE_FINITE 1
  290.  
  291. /* Define to 1 if you have the `finitef' function. */
  292. /* #undef _GLIBCXX_HAVE_FINITEF */
  293.  
  294. /* Define to 1 if you have the `finitel' function. */
  295. /* #undef _GLIBCXX_HAVE_FINITEL */
  296.  
  297. /* Define to 1 if you have the <float.h> header file. */
  298. #define _GLIBCXX_HAVE_FLOAT_H 1
  299.  
  300. /* Define to 1 if you have the `floorf' function. */
  301. #define _GLIBCXX_HAVE_FLOORF 1
  302.  
  303. /* Define to 1 if you have the `floorl' function. */
  304. #define _GLIBCXX_HAVE_FLOORL 1
  305.  
  306. /* Define to 1 if you have the `fmodf' function. */
  307. #define _GLIBCXX_HAVE_FMODF 1
  308.  
  309. /* Define to 1 if you have the `fmodl' function. */
  310. #define _GLIBCXX_HAVE_FMODL 1
  311.  
  312. /* Define to 1 if you have the `fpclass' function. */
  313. /* #undef _GLIBCXX_HAVE_FPCLASS */
  314.  
  315. /* Define to 1 if you have the <fp.h> header file. */
  316. /* #undef _GLIBCXX_HAVE_FP_H */
  317.  
  318. /* Define to 1 if you have the `frexpf' function. */
  319. #define _GLIBCXX_HAVE_FREXPF 1
  320.  
  321. /* Define to 1 if you have the `frexpl' function. */
  322. #define _GLIBCXX_HAVE_FREXPL 1
  323.  
  324. /* Define to 1 if you have the <gconv.h> header file. */
  325. /* #undef _GLIBCXX_HAVE_GCONV_H */
  326.  
  327. /* Define if _Unwind_GetIPInfo is available. */
  328. #define _GLIBCXX_HAVE_GETIPINFO 1
  329.  
  330. /* Define to 1 if you have the `getpagesize' function. */
  331. #define _GLIBCXX_HAVE_GETPAGESIZE 1
  332.  
  333. /* Define if gthr-default.h exists (meaning that threading support is
  334.    enabled). */
  335. #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
  336.  
  337. /* Define to 1 if you have the `hypot' function. */
  338. #define _GLIBCXX_HAVE_HYPOT 1
  339.  
  340. /* Define to 1 if you have the `hypotf' function. */
  341. #define _GLIBCXX_HAVE_HYPOTF 1
  342.  
  343. /* Define to 1 if you have the `hypotl' function. */
  344. #define _GLIBCXX_HAVE_HYPOTL 1
  345.  
  346. /* Define to 1 if you have the `iconv' function. */
  347. #define _GLIBCXX_HAVE_ICONV 1
  348.  
  349. /* Define to 1 if you have the `iconv_close' function. */
  350. #define _GLIBCXX_HAVE_ICONV_CLOSE 1
  351.  
  352. /* Define to 1 if you have the `iconv_open' function. */
  353. #define _GLIBCXX_HAVE_ICONV_OPEN 1
  354.  
  355. /* Define to 1 if you have the <ieeefp.h> header file. */
  356. /* #undef _GLIBCXX_HAVE_IEEEFP_H */
  357.  
  358. /* Define if int64_t is available in <stdint.h>. */
  359. #define _GLIBCXX_HAVE_INT64_T 1
  360.  
  361. /* Define to 1 if you have the <inttypes.h> header file. */
  362. #define _GLIBCXX_HAVE_INTTYPES_H 1
  363.  
  364. /* Define to 1 if you have the `isinf' function. */
  365. #define _GLIBCXX_HAVE_ISINF 1
  366.  
  367. /* Define to 1 if you have the `isinff' function. */
  368. /* #undef _GLIBCXX_HAVE_ISINFF */
  369.  
  370. /* Define to 1 if you have the `isinfl' function. */
  371. /* #undef _GLIBCXX_HAVE_ISINFL */
  372.  
  373. /* Define to 1 if you have the `isnan' function. */
  374. #define _GLIBCXX_HAVE_ISNAN 1
  375.  
  376. /* Define to 1 if you have the `isnanf' function. */
  377. /* #undef _GLIBCXX_HAVE_ISNANF */
  378.  
  379. /* Define to 1 if you have the `isnanl' function. */
  380. /* #undef _GLIBCXX_HAVE_ISNANL */
  381.  
  382. /* Defined if iswblank exists. */
  383. #define _GLIBCXX_HAVE_ISWBLANK 1
  384.  
  385. /* Define if LC_MESSAGES is available in <locale.h>. */
  386. #define _GLIBCXX_HAVE_LC_MESSAGES 1
  387.  
  388. /* Define to 1 if you have the `ldexpf' function. */
  389. #define _GLIBCXX_HAVE_LDEXPF 1
  390.  
  391. /* Define to 1 if you have the `ldexpl' function. */
  392. #define _GLIBCXX_HAVE_LDEXPL 1
  393.  
  394. /* Define to 1 if you have the <libintl.h> header file. */
  395. /* #undef _GLIBCXX_HAVE_LIBINTL_H */
  396.  
  397. /* Define to 1 if you have the `m' library (-lm). */
  398. #define _GLIBCXX_HAVE_LIBM 1
  399.  
  400. /* Only used in build directory testsuite_hooks.h. */
  401. #define _GLIBCXX_HAVE_LIMIT_AS 1
  402.  
  403. /* Only used in build directory testsuite_hooks.h. */
  404. #define _GLIBCXX_HAVE_LIMIT_DATA 1
  405.  
  406. /* Only used in build directory testsuite_hooks.h. */
  407. #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
  408.  
  409. /* Only used in build directory testsuite_hooks.h. */
  410. #define _GLIBCXX_HAVE_LIMIT_RSS 1
  411.  
  412. /* Only used in build directory testsuite_hooks.h. */
  413. #define _GLIBCXX_HAVE_LIMIT_VMEM 0
  414.  
  415. /* Define to 1 if you have the <locale.h> header file. */
  416. #define _GLIBCXX_HAVE_LOCALE_H 1
  417.  
  418. /* Define to 1 if you have the `log10f' function. */
  419. #define _GLIBCXX_HAVE_LOG10F 1
  420.  
  421. /* Define to 1 if you have the `log10l' function. */
  422. #define _GLIBCXX_HAVE_LOG10L 1
  423.  
  424. /* Define to 1 if you have the `logf' function. */
  425. #define _GLIBCXX_HAVE_LOGF 1
  426.  
  427. /* Define to 1 if you have the `logl' function. */
  428. #define _GLIBCXX_HAVE_LOGL 1
  429.  
  430. /* Define to 1 if you have the <machine/endian.h> header file. */
  431. #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
  432.  
  433. /* Define to 1 if you have the <machine/param.h> header file. */
  434. #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1
  435.  
  436. /* Define if mbstate_t exists in wchar.h. */
  437. #define _GLIBCXX_HAVE_MBSTATE_T 1
  438.  
  439. /* Define to 1 if you have the <memory.h> header file. */
  440. #define _GLIBCXX_HAVE_MEMORY_H 1
  441.  
  442. /* Define to 1 if you have the `modf' function. */
  443. #define _GLIBCXX_HAVE_MODF 1
  444.  
  445. /* Define to 1 if you have the `modff' function. */
  446. #define _GLIBCXX_HAVE_MODFF 1
  447.  
  448. /* Define to 1 if you have the `modfl' function. */
  449. #define _GLIBCXX_HAVE_MODFL 1
  450.  
  451. /* Define to 1 if you have the <nan.h> header file. */
  452. /* #undef _GLIBCXX_HAVE_NAN_H */
  453.  
  454. /* Define to 1 if you have the `nl_langinfo' function. */
  455. #define _GLIBCXX_HAVE_NL_LANGINFO 1
  456.  
  457. /* Define if poll is available in <poll.h>. */
  458. #define _GLIBCXX_HAVE_POLL 1
  459.  
  460. /* Define to 1 if you have the `powf' function. */
  461. #define _GLIBCXX_HAVE_POWF 1
  462.  
  463. /* Define to 1 if you have the `powl' function. */
  464. #define _GLIBCXX_HAVE_POWL 1
  465.  
  466. /* Define to 1 if you have the `qfpclass' function. */
  467. /* #undef _GLIBCXX_HAVE_QFPCLASS */
  468.  
  469. /* Define to 1 if you have the `setenv' function. */
  470. #define _GLIBCXX_HAVE_SETENV 1
  471.  
  472. /* Define if sigsetjmp is available. */
  473. #define _GLIBCXX_HAVE_SIGSETJMP 1
  474.  
  475. /* Define to 1 if you have the `sincos' function. */
  476. /* #undef _GLIBCXX_HAVE_SINCOS */
  477.  
  478. /* Define to 1 if you have the `sincosf' function. */
  479. /* #undef _GLIBCXX_HAVE_SINCOSF */
  480.  
  481. /* Define to 1 if you have the `sincosl' function. */
  482. /* #undef _GLIBCXX_HAVE_SINCOSL */
  483.  
  484. /* Define to 1 if you have the `sinf' function. */
  485. #define _GLIBCXX_HAVE_SINF 1
  486.  
  487. /* Define to 1 if you have the `sinhf' function. */
  488. #define _GLIBCXX_HAVE_SINHF 1
  489.  
  490. /* Define to 1 if you have the `sinhl' function. */
  491. #define _GLIBCXX_HAVE_SINHL 1
  492.  
  493. /* Define to 1 if you have the `sinl' function. */
  494. #define _GLIBCXX_HAVE_SINL 1
  495.  
  496. /* Define to 1 if you have the `sqrtf' function. */
  497. #define _GLIBCXX_HAVE_SQRTF 1
  498.  
  499. /* Define to 1 if you have the `sqrtl' function. */
  500. #define _GLIBCXX_HAVE_SQRTL 1
  501.  
  502. /* Define to 1 if you have the <stdbool.h> header file. */
  503. #define _GLIBCXX_HAVE_STDBOOL_H 1
  504.  
  505. /* Define to 1 if you have the <stdint.h> header file. */
  506. #define _GLIBCXX_HAVE_STDINT_H 1
  507.  
  508. /* Define to 1 if you have the <stdlib.h> header file. */
  509. #define _GLIBCXX_HAVE_STDLIB_H 1
  510.  
  511. /* Define if strerror_l is available in <string.h>. */
  512. /* #undef _GLIBCXX_HAVE_STRERROR_L */
  513.  
  514. /* Define if strerror_r is available in <string.h>. */
  515. #define _GLIBCXX_HAVE_STRERROR_R 1
  516.  
  517. /* Define to 1 if you have the <strings.h> header file. */
  518. #define _GLIBCXX_HAVE_STRINGS_H 1
  519.  
  520. /* Define to 1 if you have the <string.h> header file. */
  521. #define _GLIBCXX_HAVE_STRING_H 1
  522.  
  523. /* Define to 1 if you have the `strtof' function. */
  524. #define _GLIBCXX_HAVE_STRTOF 1
  525.  
  526. /* Define to 1 if you have the `strtold' function. */
  527. #define _GLIBCXX_HAVE_STRTOLD 1
  528.  
  529. /* Define if strxfrm_l is available in <string.h>. */
  530. /* #undef _GLIBCXX_HAVE_STRXFRM_L */
  531.  
  532. /* Define to 1 if you have the <sys/filio.h> header file. */
  533. #define _GLIBCXX_HAVE_SYS_FILIO_H 1
  534.  
  535. /* Define to 1 if you have the <sys/ioctl.h> header file. */
  536. #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
  537.  
  538. /* Define to 1 if you have the <sys/ipc.h> header file. */
  539. #define _GLIBCXX_HAVE_SYS_IPC_H 1
  540.  
  541. /* Define to 1 if you have the <sys/isa_defs.h> header file. */
  542. /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
  543.  
  544. /* Define to 1 if you have the <sys/machine.h> header file. */
  545. /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
  546.  
  547. /* Define to 1 if you have the <sys/param.h> header file. */
  548. /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */
  549.  
  550. /* Define to 1 if you have the <sys/resource.h> header file. */
  551. #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
  552.  
  553. /* Define to 1 if you have the <sys/sem.h> header file. */
  554. #define _GLIBCXX_HAVE_SYS_SEM_H 1
  555.  
  556. /* Define to 1 if you have the <sys/stat.h> header file. */
  557. #define _GLIBCXX_HAVE_SYS_STAT_H 1
  558.  
  559. /* Define to 1 if you have the <sys/time.h> header file. */
  560. #define _GLIBCXX_HAVE_SYS_TIME_H 1
  561.  
  562. /* Define to 1 if you have the <sys/types.h> header file. */
  563. #define _GLIBCXX_HAVE_SYS_TYPES_H 1
  564.  
  565. /* Define to 1 if you have the <sys/uio.h> header file. */
  566. #define _GLIBCXX_HAVE_SYS_UIO_H 1
  567.  
  568. /* Define if S_IFREG is available in <sys/stat.h>. */
  569. /* #undef _GLIBCXX_HAVE_S_IFREG */
  570.  
  571. /* Define if S_IFREG is available in <sys/stat.h>. */
  572. #define _GLIBCXX_HAVE_S_ISREG 1
  573.  
  574. /* Define to 1 if you have the `tanf' function. */
  575. #define _GLIBCXX_HAVE_TANF 1
  576.  
  577. /* Define to 1 if you have the `tanhf' function. */
  578. #define _GLIBCXX_HAVE_TANHF 1
  579.  
  580. /* Define to 1 if you have the `tanhl' function. */
  581. #define _GLIBCXX_HAVE_TANHL 1
  582.  
  583. /* Define to 1 if you have the `tanl' function. */
  584. #define _GLIBCXX_HAVE_TANL 1
  585.  
  586. /* Define to 1 if the target supports thread-local storage. */
  587. /* #undef _GLIBCXX_HAVE_TLS */
  588.  
  589. /* Define to 1 if you have the <unistd.h> header file. */
  590. #define _GLIBCXX_HAVE_UNISTD_H 1
  591.  
  592. /* Defined if vfwscanf exists. */
  593. #define _GLIBCXX_HAVE_VFWSCANF 1
  594.  
  595. /* Defined if vswscanf exists. */
  596. #define _GLIBCXX_HAVE_VSWSCANF 1
  597.  
  598. /* Defined if vwscanf exists. */
  599. #define _GLIBCXX_HAVE_VWSCANF 1
  600.  
  601. /* Define to 1 if you have the <wchar.h> header file. */
  602. #define _GLIBCXX_HAVE_WCHAR_H 1
  603.  
  604. /* Defined if wcstof exists. */
  605. #define _GLIBCXX_HAVE_WCSTOF 1
  606.  
  607. /* Define to 1 if you have the <wctype.h> header file. */
  608. #define _GLIBCXX_HAVE_WCTYPE_H 1
  609.  
  610. /* Define if writev is available in <sys/uio.h>. */
  611. #define _GLIBCXX_HAVE_WRITEV 1
  612.  
  613. /* Define to 1 if you have the `_acosf' function. */
  614. /* #undef _GLIBCXX_HAVE__ACOSF */
  615.  
  616. /* Define to 1 if you have the `_acosl' function. */
  617. /* #undef _GLIBCXX_HAVE__ACOSL */
  618.  
  619. /* Define to 1 if you have the `_asinf' function. */
  620. /* #undef _GLIBCXX_HAVE__ASINF */
  621.  
  622. /* Define to 1 if you have the `_asinl' function. */
  623. /* #undef _GLIBCXX_HAVE__ASINL */
  624.  
  625. /* Define to 1 if you have the `_atan2f' function. */
  626. /* #undef _GLIBCXX_HAVE__ATAN2F */
  627.  
  628. /* Define to 1 if you have the `_atan2l' function. */
  629. /* #undef _GLIBCXX_HAVE__ATAN2L */
  630.  
  631. /* Define to 1 if you have the `_atanf' function. */
  632. /* #undef _GLIBCXX_HAVE__ATANF */
  633.  
  634. /* Define to 1 if you have the `_atanl' function. */
  635. /* #undef _GLIBCXX_HAVE__ATANL */
  636.  
  637. /* Define to 1 if you have the `_ceilf' function. */
  638. /* #undef _GLIBCXX_HAVE__CEILF */
  639.  
  640. /* Define to 1 if you have the `_ceill' function. */
  641. /* #undef _GLIBCXX_HAVE__CEILL */
  642.  
  643. /* Define to 1 if you have the `_copysign' function. */
  644. /* #undef _GLIBCXX_HAVE__COPYSIGN */
  645.  
  646. /* Define to 1 if you have the `_copysignl' function. */
  647. /* #undef _GLIBCXX_HAVE__COPYSIGNL */
  648.  
  649. /* Define to 1 if you have the `_cosf' function. */
  650. /* #undef _GLIBCXX_HAVE__COSF */
  651.  
  652. /* Define to 1 if you have the `_coshf' function. */
  653. /* #undef _GLIBCXX_HAVE__COSHF */
  654.  
  655. /* Define to 1 if you have the `_coshl' function. */
  656. /* #undef _GLIBCXX_HAVE__COSHL */
  657.  
  658. /* Define to 1 if you have the `_cosl' function. */
  659. /* #undef _GLIBCXX_HAVE__COSL */
  660.  
  661. /* Define to 1 if you have the `_expf' function. */
  662. /* #undef _GLIBCXX_HAVE__EXPF */
  663.  
  664. /* Define to 1 if you have the `_expl' function. */
  665. /* #undef _GLIBCXX_HAVE__EXPL */
  666.  
  667. /* Define to 1 if you have the `_fabsf' function. */
  668. /* #undef _GLIBCXX_HAVE__FABSF */
  669.  
  670. /* Define to 1 if you have the `_fabsl' function. */
  671. /* #undef _GLIBCXX_HAVE__FABSL */
  672.  
  673. /* Define to 1 if you have the `_finite' function. */
  674. /* #undef _GLIBCXX_HAVE__FINITE */
  675.  
  676. /* Define to 1 if you have the `_finitef' function. */
  677. /* #undef _GLIBCXX_HAVE__FINITEF */
  678.  
  679. /* Define to 1 if you have the `_finitel' function. */
  680. /* #undef _GLIBCXX_HAVE__FINITEL */
  681.  
  682. /* Define to 1 if you have the `_floorf' function. */
  683. /* #undef _GLIBCXX_HAVE__FLOORF */
  684.  
  685. /* Define to 1 if you have the `_floorl' function. */
  686. /* #undef _GLIBCXX_HAVE__FLOORL */
  687.  
  688. /* Define to 1 if you have the `_fmodf' function. */
  689. /* #undef _GLIBCXX_HAVE__FMODF */
  690.  
  691. /* Define to 1 if you have the `_fmodl' function. */
  692. /* #undef _GLIBCXX_HAVE__FMODL */
  693.  
  694. /* Define to 1 if you have the `_fpclass' function. */
  695. /* #undef _GLIBCXX_HAVE__FPCLASS */
  696.  
  697. /* Define to 1 if you have the `_frexpf' function. */
  698. /* #undef _GLIBCXX_HAVE__FREXPF */
  699.  
  700. /* Define to 1 if you have the `_frexpl' function. */
  701. /* #undef _GLIBCXX_HAVE__FREXPL */
  702.  
  703. /* Define to 1 if you have the `_hypot' function. */
  704. /* #undef _GLIBCXX_HAVE__HYPOT */
  705.  
  706. /* Define to 1 if you have the `_hypotf' function. */
  707. /* #undef _GLIBCXX_HAVE__HYPOTF */
  708.  
  709. /* Define to 1 if you have the `_hypotl' function. */
  710. /* #undef _GLIBCXX_HAVE__HYPOTL */
  711.  
  712. /* Define to 1 if you have the `_isinf' function. */
  713. /* #undef _GLIBCXX_HAVE__ISINF */
  714.  
  715. /* Define to 1 if you have the `_isinff' function. */
  716. /* #undef _GLIBCXX_HAVE__ISINFF */
  717.  
  718. /* Define to 1 if you have the `_isinfl' function. */
  719. /* #undef _GLIBCXX_HAVE__ISINFL */
  720.  
  721. /* Define to 1 if you have the `_isnan' function. */
  722. /* #undef _GLIBCXX_HAVE__ISNAN */
  723.  
  724. /* Define to 1 if you have the `_isnanf' function. */
  725. /* #undef _GLIBCXX_HAVE__ISNANF */
  726.  
  727. /* Define to 1 if you have the `_isnanl' function. */
  728. /* #undef _GLIBCXX_HAVE__ISNANL */
  729.  
  730. /* Define to 1 if you have the `_ldexpf' function. */
  731. /* #undef _GLIBCXX_HAVE__LDEXPF */
  732.  
  733. /* Define to 1 if you have the `_ldexpl' function. */
  734. /* #undef _GLIBCXX_HAVE__LDEXPL */
  735.  
  736. /* Define to 1 if you have the `_log10f' function. */
  737. /* #undef _GLIBCXX_HAVE__LOG10F */
  738.  
  739. /* Define to 1 if you have the `_log10l' function. */
  740. /* #undef _GLIBCXX_HAVE__LOG10L */
  741.  
  742. /* Define to 1 if you have the `_logf' function. */
  743. /* #undef _GLIBCXX_HAVE__LOGF */
  744.  
  745. /* Define to 1 if you have the `_logl' function. */
  746. /* #undef _GLIBCXX_HAVE__LOGL */
  747.  
  748. /* Define to 1 if you have the `_modf' function. */
  749. /* #undef _GLIBCXX_HAVE__MODF */
  750.  
  751. /* Define to 1 if you have the `_modff' function. */
  752. /* #undef _GLIBCXX_HAVE__MODFF */
  753.  
  754. /* Define to 1 if you have the `_modfl' function. */
  755. /* #undef _GLIBCXX_HAVE__MODFL */
  756.  
  757. /* Define to 1 if you have the `_powf' function. */
  758. /* #undef _GLIBCXX_HAVE__POWF */
  759.  
  760. /* Define to 1 if you have the `_powl' function. */
  761. /* #undef _GLIBCXX_HAVE__POWL */
  762.  
  763. /* Define to 1 if you have the `_qfpclass' function. */
  764. /* #undef _GLIBCXX_HAVE__QFPCLASS */
  765.  
  766. /* Define to 1 if you have the `_sincos' function. */
  767. /* #undef _GLIBCXX_HAVE__SINCOS */
  768.  
  769. /* Define to 1 if you have the `_sincosf' function. */
  770. /* #undef _GLIBCXX_HAVE__SINCOSF */
  771.  
  772. /* Define to 1 if you have the `_sincosl' function. */
  773. /* #undef _GLIBCXX_HAVE__SINCOSL */
  774.  
  775. /* Define to 1 if you have the `_sinf' function. */
  776. /* #undef _GLIBCXX_HAVE__SINF */
  777.  
  778. /* Define to 1 if you have the `_sinhf' function. */
  779. /* #undef _GLIBCXX_HAVE__SINHF */
  780.  
  781. /* Define to 1 if you have the `_sinhl' function. */
  782. /* #undef _GLIBCXX_HAVE__SINHL */
  783.  
  784. /* Define to 1 if you have the `_sinl' function. */
  785. /* #undef _GLIBCXX_HAVE__SINL */
  786.  
  787. /* Define to 1 if you have the `_sqrtf' function. */
  788. /* #undef _GLIBCXX_HAVE__SQRTF */
  789.  
  790. /* Define to 1 if you have the `_sqrtl' function. */
  791. /* #undef _GLIBCXX_HAVE__SQRTL */
  792.  
  793. /* Define to 1 if you have the `_tanf' function. */
  794. /* #undef _GLIBCXX_HAVE__TANF */
  795.  
  796. /* Define to 1 if you have the `_tanhf' function. */
  797. /* #undef _GLIBCXX_HAVE__TANHF */
  798.  
  799. /* Define to 1 if you have the `_tanhl' function. */
  800. /* #undef _GLIBCXX_HAVE__TANHL */
  801.  
  802. /* Define to 1 if you have the `_tanl' function. */
  803. /* #undef _GLIBCXX_HAVE__TANL */
  804.  
  805. /* Define if the compiler/host combination has __builtin_abs. */
  806. #define _GLIBCXX_HAVE___BUILTIN_ABS 1
  807.  
  808. /* Define if the compiler/host combination has __builtin_cos. */
  809. #define _GLIBCXX_HAVE___BUILTIN_COS 1
  810.  
  811. /* Define if the compiler/host combination has __builtin_cosf. */
  812. #define _GLIBCXX_HAVE___BUILTIN_COSF 1
  813.  
  814. /* Define if the compiler/host combination has __builtin_cosl. */
  815. #define _GLIBCXX_HAVE___BUILTIN_COSL 1
  816.  
  817. /* Define if the compiler/host combination has __builtin_fabs. */
  818. #define _GLIBCXX_HAVE___BUILTIN_FABS 1
  819.  
  820. /* Define if the compiler/host combination has __builtin_fabsf. */
  821. #define _GLIBCXX_HAVE___BUILTIN_FABSF 1
  822.  
  823. /* Define if the compiler/host combination has __builtin_fabsl. */
  824. #define _GLIBCXX_HAVE___BUILTIN_FABSL 1
  825.  
  826. /* Define if the compiler/host combination has __builtin_labs. */
  827. #define _GLIBCXX_HAVE___BUILTIN_LABS 1
  828.  
  829. /* Define if the compiler/host combination has __builtin_sin. */
  830. #define _GLIBCXX_HAVE___BUILTIN_SIN 1
  831.  
  832. /* Define if the compiler/host combination has __builtin_sinf. */
  833. #define _GLIBCXX_HAVE___BUILTIN_SINF 1
  834.  
  835. /* Define if the compiler/host combination has __builtin_sinl. */
  836. #define _GLIBCXX_HAVE___BUILTIN_SINL 1
  837.  
  838. /* Define if the compiler/host combination has __builtin_sqrt. */
  839. #define _GLIBCXX_HAVE___BUILTIN_SQRT 1
  840.  
  841. /* Define if the compiler/host combination has __builtin_sqrtf. */
  842. #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1
  843.  
  844. /* Define if the compiler/host combination has __builtin_sqrtl. */
  845. #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1
  846.  
  847. /* Define to 1 if you have the `__signbitf' function. */
  848. #define _GLIBCXX_HAVE___SIGNBITF 1
  849.  
  850. /* Define to 1 if you have the `__signbitl' function. */
  851. #define _GLIBCXX_HAVE___SIGNBITL 1
  852.  
  853. /* Name of package */
  854. /* #undef _GLIBCXX_PACKAGE */
  855.  
  856. /* Define to the address where bug reports for this package should be sent. */
  857. #define _GLIBCXX_PACKAGE_BUGREPORT ""
  858.  
  859. /* Define to the full name of this package. */
  860. #define _GLIBCXX_PACKAGE_NAME "package-unused"
  861.  
  862. /* Define to the full name and version of this package. */
  863. #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
  864.  
  865. /* Define to the one symbol short name of this package. */
  866. #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
  867.  
  868. /* Define to the version of this package. */
  869. #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
  870.  
  871. /* Define to 1 if you have the ANSI C header files. */
  872. #define STDC_HEADERS 1
  873.  
  874. /* Version number of package */
  875. /* #undef _GLIBCXX_VERSION */
  876.  
  877. /* Define if builtin atomic operations are supported on this host. */
  878. #define _GLIBCXX_ATOMIC_BUILTINS 1
  879.  
  880. /* Define to use concept checking code from the boost libraries. */
  881. /* #undef _GLIBCXX_CONCEPT_CHECKS */
  882.  
  883. /* Define if a fully dynamic basic_string is wanted. */
  884. /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
  885.  
  886. /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
  887. #define _GLIBCXX_HOSTED 1
  888.  
  889. /* Define if compatibility should be provided for -mlong-double-64. */
  890.  
  891. /* Define if using setrlimit to set resource limits during "make check" */
  892. #define _GLIBCXX_RES_LIMITS 1
  893.  
  894. /* Define if size_t is unsigned int. */
  895. /* #undef _GLIBCXX_SIZE_T_IS_UINT */
  896.  
  897. /* Define if the compiler is configured for setjmp/longjmp exceptions. */
  898. #if __arm__
  899.     #define _GLIBCXX_SJLJ_EXCEPTIONS 1
  900. #endif
  901.  
  902. /* Define to use symbol versioning in the shared library. */
  903. #define _GLIBCXX_SYMVER 1
  904.  
  905. /* Define to use darwin versioning in the shared library. */
  906. #define _GLIBCXX_SYMVER_DARWIN 1
  907.  
  908. /* Define to use GNU versioning in the shared library. */
  909. /* #undef _GLIBCXX_SYMVER_GNU */
  910.  
  911. /* Define to use GNU namespace versioning in the shared library. */
  912. /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
  913.  
  914. /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
  915.    <stdio.h>, and <stdlib.h> can be used or exposed. */
  916. #define _GLIBCXX_USE_C99 1
  917.  
  918. /* Define if C99 functions in <complex.h> should be used in <complex>. Using
  919.    compiler builtins for these functions requires corresponding C99 library
  920.    functions to be present. */
  921. #define _GLIBCXX_USE_C99_COMPLEX 1
  922.  
  923. /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
  924.    Using compiler builtins for these functions requires corresponding C99
  925.    library functions to be present. */
  926. #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
  927.  
  928. /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
  929.    namespace std::tr1. */
  930. #define _GLIBCXX_USE_C99_CTYPE_TR1 1
  931.  
  932. /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
  933.    namespace std::tr1. */
  934. #define _GLIBCXX_USE_C99_FENV_TR1 1
  935.  
  936. /* Define if C99 functions in <inttypes.h> should be imported in
  937.    <tr1/cinttypes> in namespace std::tr1. */
  938. #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
  939.  
  940. /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
  941.    in namespace std. */
  942. #define _GLIBCXX_USE_C99_MATH 1
  943.  
  944. /* Define if C99 functions or macros in <math.h> should be imported in
  945.    <tr1/cmath> in namespace std::tr1. */
  946. #define _GLIBCXX_USE_C99_MATH_TR1 1
  947.  
  948. /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
  949.    namespace std::tr1. */
  950. #define _GLIBCXX_USE_C99_STDINT_TR1 1
  951.  
  952. /* Define if iconv and related functions exist and are usable. */
  953. #define _GLIBCXX_USE_ICONV 1
  954.  
  955. /* Define if LFS support is available. */
  956. /* #undef _GLIBCXX_USE_LFS */
  957.  
  958. /* Define if code specialized for long long should be used. */
  959. #define _GLIBCXX_USE_LONG_LONG 1
  960.  
  961. /* Define if NLS translations are to be used. */
  962. /* #undef _GLIBCXX_USE_NLS */
  963.  
  964. /* Define if code specialized for wchar_t should be used. */
  965. #define _GLIBCXX_USE_WCHAR_T 1
  966.  
  967. #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
  968. # define _GLIBCXX_HAVE_ACOSF 1
  969. # define acosf _acosf
  970. #endif
  971.  
  972. #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
  973. # define _GLIBCXX_HAVE_ACOSL 1
  974. # define acosl _acosl
  975. #endif
  976.  
  977. #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
  978. # define _GLIBCXX_HAVE_ASINF 1
  979. # define asinf _asinf
  980. #endif
  981.  
  982. #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
  983. # define _GLIBCXX_HAVE_ASINL 1
  984. # define asinl _asinl
  985. #endif
  986.  
  987. #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
  988. # define _GLIBCXX_HAVE_ATAN2F 1
  989. # define atan2f _atan2f
  990. #endif
  991.  
  992. #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
  993. # define _GLIBCXX_HAVE_ATAN2L 1
  994. # define atan2l _atan2l
  995. #endif
  996.  
  997. #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
  998. # define _GLIBCXX_HAVE_ATANF 1
  999. # define atanf _atanf
  1000. #endif
  1001.  
  1002. #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
  1003. # define _GLIBCXX_HAVE_ATANL 1
  1004. # define atanl _atanl
  1005. #endif
  1006.  
  1007. #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
  1008. # define _GLIBCXX_HAVE_CEILF 1
  1009. # define ceilf _ceilf
  1010. #endif
  1011.  
  1012. #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
  1013. # define _GLIBCXX_HAVE_CEILL 1
  1014. # define ceill _ceill
  1015. #endif
  1016.  
  1017. #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN)
  1018. # define _GLIBCXX_HAVE_COPYSIGN 1
  1019. # define copysign _copysign
  1020. #endif
  1021.  
  1022. #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL)
  1023. # define _GLIBCXX_HAVE_COPYSIGNL 1
  1024. # define copysignl _copysignl
  1025. #endif
  1026.  
  1027. #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
  1028. # define _GLIBCXX_HAVE_COSF 1
  1029. # define cosf _cosf
  1030. #endif
  1031.  
  1032. #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
  1033. # define _GLIBCXX_HAVE_COSHF 1
  1034. # define coshf _coshf
  1035. #endif
  1036.  
  1037. #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
  1038. # define _GLIBCXX_HAVE_COSHL 1
  1039. # define coshl _coshl
  1040. #endif
  1041.  
  1042. #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
  1043. # define _GLIBCXX_HAVE_COSL 1
  1044. # define cosl _cosl
  1045. #endif
  1046.  
  1047. #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
  1048. # define _GLIBCXX_HAVE_EXPF 1
  1049. # define expf _expf
  1050. #endif
  1051.  
  1052. #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
  1053. # define _GLIBCXX_HAVE_EXPL 1
  1054. # define expl _expl
  1055. #endif
  1056.  
  1057. #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
  1058. # define _GLIBCXX_HAVE_FABSF 1
  1059. # define fabsf _fabsf
  1060. #endif
  1061.  
  1062. #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
  1063. # define _GLIBCXX_HAVE_FABSL 1
  1064. # define fabsl _fabsl
  1065. #endif
  1066.  
  1067. #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
  1068. # define _GLIBCXX_HAVE_FINITE 1
  1069. # define finite _finite
  1070. #endif
  1071.  
  1072. #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
  1073. # define _GLIBCXX_HAVE_FINITEF 1
  1074. # define finitef _finitef
  1075. #endif
  1076.  
  1077. #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
  1078. # define _GLIBCXX_HAVE_FINITEL 1
  1079. # define finitel _finitel
  1080. #endif
  1081.  
  1082. #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
  1083. # define _GLIBCXX_HAVE_FLOORF 1
  1084. # define floorf _floorf
  1085. #endif
  1086.  
  1087. #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
  1088. # define _GLIBCXX_HAVE_FLOORL 1
  1089. # define floorl _floorl
  1090. #endif
  1091.  
  1092. #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
  1093. # define _GLIBCXX_HAVE_FMODF 1
  1094. # define fmodf _fmodf
  1095. #endif
  1096.  
  1097. #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
  1098. # define _GLIBCXX_HAVE_FMODL 1
  1099. # define fmodl _fmodl
  1100. #endif
  1101.  
  1102. #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
  1103. # define _GLIBCXX_HAVE_FPCLASS 1
  1104. # define fpclass _fpclass
  1105. #endif
  1106.  
  1107. #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
  1108. # define _GLIBCXX_HAVE_FREXPF 1
  1109. # define frexpf _frexpf
  1110. #endif
  1111.  
  1112. #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
  1113. # define _GLIBCXX_HAVE_FREXPL 1
  1114. # define frexpl _frexpl
  1115. #endif
  1116.  
  1117. #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
  1118. # define _GLIBCXX_HAVE_HYPOT 1
  1119. # define hypot _hypot
  1120. #endif
  1121.  
  1122. #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
  1123. # define _GLIBCXX_HAVE_HYPOTF 1
  1124. # define hypotf _hypotf
  1125. #endif
  1126.  
  1127. #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
  1128. # define _GLIBCXX_HAVE_HYPOTL 1
  1129. # define hypotl _hypotl
  1130. #endif
  1131.  
  1132. #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
  1133. # define _GLIBCXX_HAVE_ISINF 1
  1134. # define isinf _isinf
  1135. #endif
  1136.  
  1137. #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
  1138. # define _GLIBCXX_HAVE_ISINFF 1
  1139. # define isinff _isinff
  1140. #endif
  1141.  
  1142. #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
  1143. # define _GLIBCXX_HAVE_ISINFL 1
  1144. # define isinfl _isinfl
  1145. #endif
  1146.  
  1147. #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
  1148. # define _GLIBCXX_HAVE_ISNAN 1
  1149. # define isnan _isnan
  1150. #endif
  1151.  
  1152. #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
  1153. # define _GLIBCXX_HAVE_ISNANF 1
  1154. # define isnanf _isnanf
  1155. #endif
  1156.  
  1157. #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
  1158. # define _GLIBCXX_HAVE_ISNANL 1
  1159. # define isnanl _isnanl
  1160. #endif
  1161.  
  1162. #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
  1163. # define _GLIBCXX_HAVE_LDEXPF 1
  1164. # define ldexpf _ldexpf
  1165. #endif
  1166.  
  1167. #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
  1168. # define _GLIBCXX_HAVE_LDEXPL 1
  1169. # define ldexpl _ldexpl
  1170. #endif
  1171.  
  1172. #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
  1173. # define _GLIBCXX_HAVE_LOG10F 1
  1174. # define log10f _log10f
  1175. #endif
  1176.  
  1177. #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
  1178. # define _GLIBCXX_HAVE_LOG10L 1
  1179. # define log10l _log10l
  1180. #endif
  1181.  
  1182. #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
  1183. # define _GLIBCXX_HAVE_LOGF 1
  1184. # define logf _logf
  1185. #endif
  1186.  
  1187. #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
  1188. # define _GLIBCXX_HAVE_LOGL 1
  1189. # define logl _logl
  1190. #endif
  1191.  
  1192. #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
  1193. # define _GLIBCXX_HAVE_MODF 1
  1194. # define modf _modf
  1195. #endif
  1196.  
  1197. #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
  1198. # define _GLIBCXX_HAVE_MODFF 1
  1199. # define modff _modff
  1200. #endif
  1201.  
  1202. #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
  1203. # define _GLIBCXX_HAVE_MODFL 1
  1204. # define modfl _modfl
  1205. #endif
  1206.  
  1207. #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
  1208. # define _GLIBCXX_HAVE_POWF 1
  1209. # define powf _powf
  1210. #endif
  1211.  
  1212. #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
  1213. # define _GLIBCXX_HAVE_POWL 1
  1214. # define powl _powl
  1215. #endif
  1216.  
  1217. #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
  1218. # define _GLIBCXX_HAVE_QFPCLASS 1
  1219. # define qfpclass _qfpclass
  1220. #endif
  1221.  
  1222. #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
  1223. # define _GLIBCXX_HAVE_SINCOS 1
  1224. # define sincos _sincos
  1225. #endif
  1226.  
  1227. #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
  1228. # define _GLIBCXX_HAVE_SINCOSF 1
  1229. # define sincosf _sincosf
  1230. #endif
  1231.  
  1232. #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
  1233. # define _GLIBCXX_HAVE_SINCOSL 1
  1234. # define sincosl _sincosl
  1235. #endif
  1236.  
  1237. #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
  1238. # define _GLIBCXX_HAVE_SINF 1
  1239. # define sinf _sinf
  1240. #endif
  1241.  
  1242. #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
  1243. # define _GLIBCXX_HAVE_SINHF 1
  1244. # define sinhf _sinhf
  1245. #endif
  1246.  
  1247. #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
  1248. # define _GLIBCXX_HAVE_SINHL 1
  1249. # define sinhl _sinhl
  1250. #endif
  1251.  
  1252. #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
  1253. # define _GLIBCXX_HAVE_SINL 1
  1254. # define sinl _sinl
  1255. #endif
  1256.  
  1257. #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
  1258. # define _GLIBCXX_HAVE_SQRTF 1
  1259. # define sqrtf _sqrtf
  1260. #endif
  1261.  
  1262. #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
  1263. # define _GLIBCXX_HAVE_SQRTL 1
  1264. # define sqrtl _sqrtl
  1265. #endif
  1266.  
  1267. #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
  1268. # define _GLIBCXX_HAVE_STRTOF 1
  1269. # define strtof _strtof
  1270. #endif
  1271.  
  1272. #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
  1273. # define _GLIBCXX_HAVE_STRTOLD 1
  1274. # define strtold _strtold
  1275. #endif
  1276.  
  1277. #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
  1278. # define _GLIBCXX_HAVE_TANF 1
  1279. # define tanf _tanf
  1280. #endif
  1281.  
  1282. #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
  1283. # define _GLIBCXX_HAVE_TANHF 1
  1284. # define tanhf _tanhf
  1285. #endif
  1286.  
  1287. #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
  1288. # define _GLIBCXX_HAVE_TANHL 1
  1289. # define tanhl _tanhl
  1290. #endif
  1291.  
  1292. #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
  1293. # define _GLIBCXX_HAVE_TANL 1
  1294. # define tanl _tanl
  1295. #endif
  1296.  
  1297. #endif // _CXXCONFIG_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement