Advertisement
Guest User

file:///usr/include/c++/4.5/i486-linux-gnu/bits/c++config.h

a guest
Dec 3rd, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.64 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, 2008, 2009 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 3, 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. // Under Section 7 of GPL version 3, you are granted additional
  18. // permissions described in the GCC Runtime Library Exception, version
  19. // 3.1, as published by the Free Software Foundation.
  20.  
  21. // You should have received a copy of the GNU General Public License and
  22. // a copy of the GCC Runtime Library Exception along with this program;
  23. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  24. // <http://www.gnu.org/licenses/>.
  25.  
  26. /** @file c++config.h
  27. * This is an internal header file, included by other library headers.
  28. * You should not attempt to use it directly.
  29. */
  30.  
  31. #ifndef _GLIBCXX_CXX_CONFIG_H
  32. #define _GLIBCXX_CXX_CONFIG_H 1
  33.  
  34. // The current version of the C++ library in compressed ISO date format.
  35. #define __GLIBCXX__ 20110331
  36.  
  37. // Macros for visibility.
  38. // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
  39. // _GLIBCXX_VISIBILITY_ATTR
  40. # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
  41.  
  42. #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
  43. # define _GLIBCXX_VISIBILITY_ATTR(V) __attribute__ ((__visibility__ (#V)))
  44. #else
  45. // If this is not supplied by the OS-specific or CPU-specific
  46. // headers included below, it will be defined to an empty default.
  47. # define _GLIBCXX_VISIBILITY_ATTR(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
  48. #endif
  49.  
  50. // Macros for deprecated.
  51. // _GLIBCXX_DEPRECATED
  52. // _GLIBCXX_DEPRECATED_ATTR
  53. #ifndef _GLIBCXX_DEPRECATED
  54. # define _GLIBCXX_DEPRECATED 1
  55. #endif
  56.  
  57. #if defined(__DEPRECATED) && defined(__GXX_EXPERIMENTAL_CXX0X__)
  58. # define _GLIBCXX_DEPRECATED_ATTR __attribute__ ((__deprecated__))
  59. #else
  60. # define _GLIBCXX_DEPRECATED_ATTR
  61. #endif
  62.  
  63. // Macros for activating various namespace association modes.
  64. // _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
  65. // _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
  66. // _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  67.  
  68. // Guide to libstdc++ namespaces.
  69. /*
  70. namespace std
  71. {
  72. namespace __debug { }
  73. namespace __parallel { }
  74. namespace __norm { } // __normative, __shadow, __replaced
  75. namespace __cxx1998 { }
  76.  
  77. namespace tr1 { }
  78. }
  79. */
  80. #if __cplusplus
  81.  
  82. #ifdef _GLIBCXX_DEBUG
  83. # define _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 1
  84. #endif
  85.  
  86. #ifdef _GLIBCXX_PARALLEL
  87. # define _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL 1
  88. #endif
  89.  
  90. // Namespace association for profile
  91. #ifdef _GLIBCXX_PROFILE
  92. # define _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE 1
  93. #endif
  94.  
  95. # define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION 0
  96.  
  97. // Defined if any namespace association modes are active.
  98. #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG \
  99. || _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL \
  100. || _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE \
  101. || _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  102. # define _GLIBCXX_USE_NAMESPACE_ASSOCIATION 1
  103. #endif
  104.  
  105. // Macros for namespace scope. Either namespace std:: or the name
  106. // of some nested namespace within it.
  107. // _GLIBCXX_STD
  108. // _GLIBCXX_STD_D
  109. // _GLIBCXX_STD_P
  110. //
  111. // Macros for enclosing namespaces and possibly nested namespaces.
  112. // _GLIBCXX_BEGIN_NAMESPACE
  113. // _GLIBCXX_END_NAMESPACE
  114. // _GLIBCXX_BEGIN_NESTED_NAMESPACE
  115. // _GLIBCXX_END_NESTED_NAMESPACE
  116. #ifndef _GLIBCXX_USE_NAMESPACE_ASSOCIATION
  117. # define _GLIBCXX_STD_D _GLIBCXX_STD
  118. # define _GLIBCXX_STD_P _GLIBCXX_STD
  119. # define _GLIBCXX_STD_PR _GLIBCXX_STD
  120. # define _GLIBCXX_STD std
  121. # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) _GLIBCXX_BEGIN_NAMESPACE(X)
  122. # define _GLIBCXX_END_NESTED_NAMESPACE _GLIBCXX_END_NAMESPACE
  123. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
  124. # define _GLIBCXX_END_NAMESPACE }
  125. #else
  126.  
  127. # if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION // && not anything else
  128. # define _GLIBCXX_STD_D _GLIBCXX_STD
  129. # define _GLIBCXX_STD_P _GLIBCXX_STD
  130. # define _GLIBCXX_STD _6
  131. # define _GLIBCXX_BEGIN_NAMESPACE(X) _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, _6)
  132. # define _GLIBCXX_END_NAMESPACE _GLIBCXX_END_NESTED_NAMESPACE
  133. # endif
  134.  
  135. // debug
  136. # if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  137. # define _GLIBCXX_STD_D __norm
  138. # define _GLIBCXX_STD_P _GLIBCXX_STD
  139. # define _GLIBCXX_STD __cxx1998
  140. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
  141. # define _GLIBCXX_END_NAMESPACE }
  142. # define _GLIBCXX_EXTERN_TEMPLATE -1
  143. # endif
  144.  
  145. // parallel
  146. # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && !_GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  147. # define _GLIBCXX_STD_D _GLIBCXX_STD
  148. # define _GLIBCXX_STD_P __norm
  149. # define _GLIBCXX_STD __cxx1998
  150. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
  151. # define _GLIBCXX_END_NAMESPACE }
  152. # endif
  153.  
  154. // debug + parallel
  155. # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  156. # define _GLIBCXX_STD_D __norm
  157. # define _GLIBCXX_STD_P __norm
  158. # define _GLIBCXX_STD __cxx1998
  159. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
  160. # define _GLIBCXX_END_NAMESPACE }
  161. # define _GLIBCXX_EXTERN_TEMPLATE -1
  162. # endif
  163.  
  164. // profile
  165. # if _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  166. # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL || _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
  167. # error Cannot use -D_GLIBCXX_PROFILE with -D_GLIBCXX_DEBUG or \
  168. -D_GLIBCXX_PARALLEL
  169. # endif
  170. # define _GLIBCXX_STD_D __norm
  171. # define _GLIBCXX_STD_P _GLIBCXX_STD
  172. # define _GLIBCXX_STD_PR __norm
  173. # define _GLIBCXX_STD __cxx1998
  174. # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
  175. # define _GLIBCXX_END_NAMESPACE }
  176. # endif
  177.  
  178. # if __NO_INLINE__ && !__GXX_WEAK__
  179. # warning currently using namespace associated mode which may fail \
  180. without inlining due to lack of weak symbols
  181. # endif
  182.  
  183. # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) namespace X { namespace Y _GLIBCXX_VISIBILITY_ATTR(default) {
  184. # define _GLIBCXX_END_NESTED_NAMESPACE } }
  185. #endif
  186.  
  187. // Namespace associations for debug mode.
  188. #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  189. namespace std
  190. {
  191. namespace __norm { }
  192. inline namespace __debug { }
  193. inline namespace __cxx1998 { }
  194. }
  195. #endif
  196.  
  197. // Namespace associations for parallel mode.
  198. #if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
  199. namespace std
  200. {
  201. namespace __norm { }
  202. inline namespace __parallel { }
  203. inline namespace __cxx1998 { }
  204. }
  205. #endif
  206.  
  207. // Namespace associations for profile mode
  208. #if _GLIBCXX_NAMESPACE_ASSOCIATION_PROFILE
  209. namespace std
  210. {
  211. namespace __norm { }
  212. inline namespace __profile { }
  213. inline namespace __cxx1998 { }
  214. }
  215. #endif
  216.  
  217. // Namespace associations for versioning mode.
  218. #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
  219. namespace std
  220. {
  221. inline namespace _6 { }
  222. }
  223.  
  224. namespace __gnu_cxx
  225. {
  226. inline namespace _6 { }
  227. }
  228.  
  229. namespace std
  230. {
  231. namespace tr1
  232. {
  233. inline namespace _6 { }
  234. }
  235. }
  236. #endif
  237.  
  238. // XXX GLIBCXX_ABI Deprecated
  239. // Define if compatibility should be provided for -mlong-double-64
  240. #undef _GLIBCXX_LONG_DOUBLE_COMPAT
  241.  
  242. // Namespace associations for long double 128 mode.
  243. #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
  244. namespace std
  245. {
  246. inline namespace __gnu_cxx_ldbl128 { }
  247. }
  248. # define _GLIBCXX_LDBL_NAMESPACE __gnu_cxx_ldbl128::
  249. # define _GLIBCXX_BEGIN_LDBL_NAMESPACE namespace __gnu_cxx_ldbl128 {
  250. # define _GLIBCXX_END_LDBL_NAMESPACE }
  251. #else
  252. # define _GLIBCXX_LDBL_NAMESPACE
  253. # define _GLIBCXX_BEGIN_LDBL_NAMESPACE
  254. # define _GLIBCXX_END_LDBL_NAMESPACE
  255. #endif
  256.  
  257.  
  258. // Defines for C compatibility. In particular, define extern "C"
  259. // linkage only when using C++.
  260. # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
  261. # define _GLIBCXX_END_EXTERN_C }
  262.  
  263. #else // !__cplusplus
  264. # undef _GLIBCXX_BEGIN_NAMESPACE
  265. # undef _GLIBCXX_END_NAMESPACE
  266. # define _GLIBCXX_BEGIN_NAMESPACE(X)
  267. # define _GLIBCXX_END_NAMESPACE
  268. # define _GLIBCXX_BEGIN_EXTERN_C
  269. # define _GLIBCXX_END_EXTERN_C
  270. #endif
  271.  
  272. // First includes.
  273.  
  274. // Pick up any OS-specific definitions.
  275. #include <bits/os_defines.h>
  276.  
  277. // Pick up any CPU-specific definitions.
  278. #include <bits/cpu_defines.h>
  279.  
  280. // If platform uses neither visibility nor psuedo-visibility,
  281. // specify empty default for namespace annotation macros.
  282. #ifndef _GLIBCXX_PSEUDO_VISIBILITY
  283. #define _GLIBCXX_PSEUDO_VISIBILITY(V)
  284. #endif
  285.  
  286. // Allow use of "export template." This is currently not a feature
  287. // that g++ supports.
  288. // #define _GLIBCXX_EXPORT_TEMPLATE 1
  289.  
  290. // Allow use of the GNU syntax extension, "extern template." This
  291. // extension is fully documented in the g++ manual, but in a nutshell,
  292. // it inhibits all implicit instantiations and is used throughout the
  293. // library to avoid multiple weak definitions for required types that
  294. // are already explicitly instantiated in the library binary. This
  295. // substantially reduces the binary size of resulting executables.
  296.  
  297. // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
  298. // templates only in basic_string, thus activating its debug-mode
  299. // checks even at -O0.
  300. #ifndef _GLIBCXX_EXTERN_TEMPLATE
  301. # define _GLIBCXX_EXTERN_TEMPLATE 1
  302. #endif
  303.  
  304. // Certain function definitions that are meant to be overridable from
  305. // user code are decorated with this macro. For some targets, this
  306. // macro causes these definitions to be weak.
  307. #ifndef _GLIBCXX_WEAK_DEFINITION
  308. # define _GLIBCXX_WEAK_DEFINITION
  309. #endif
  310.  
  311. // Assert.
  312. // Avoid the use of assert, because we're trying to keep the <cassert>
  313. // include out of the mix.
  314. #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
  315. #define __glibcxx_assert(_Condition)
  316. #else
  317. _GLIBCXX_BEGIN_NAMESPACE(std)
  318. // Avoid the use of assert, because we're trying to keep the <cassert>
  319. // include out of the mix.
  320. inline void
  321. __replacement_assert(const char* __file, int __line,
  322. const char* __function, const char* __condition)
  323. {
  324. __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
  325. __function, __condition);
  326. __builtin_abort();
  327. }
  328. _GLIBCXX_END_NAMESPACE
  329.  
  330. #define __glibcxx_assert(_Condition) \
  331. do \
  332. { \
  333. if (! (_Condition)) \
  334. std::__replacement_assert(__FILE__, __LINE__, \
  335. __PRETTY_FUNCTION__, #_Condition); \
  336. } while (false)
  337. #endif
  338.  
  339. // The remainder of the prewritten config is automatic; all the
  340. // user hooks are listed above.
  341.  
  342. // Create a boolean flag to be used to determine if --fast-math is set.
  343. #ifdef __FAST_MATH__
  344. # define _GLIBCXX_FAST_MATH 1
  345. #else
  346. # define _GLIBCXX_FAST_MATH 0
  347. #endif
  348.  
  349. // This marks string literals in header files to be extracted for eventual
  350. // translation. It is primarily used for messages in thrown exceptions; see
  351. // src/functexcept.cc. We use __N because the more traditional _N is used
  352. // for something else under certain OSes (see BADNAMES).
  353. #define __N(msgid) (msgid)
  354.  
  355. // For example, <windows.h> is known to #define min and max as macros...
  356. #undef min
  357. #undef max
  358.  
  359. #ifndef _GLIBCXX_PURE
  360. # define _GLIBCXX_PURE __attribute__ ((__pure__))
  361. #endif
  362.  
  363. #ifndef _GLIBCXX_CONST
  364. # define _GLIBCXX_CONST __attribute__ ((__const__))
  365. #endif
  366.  
  367. #ifndef _GLIBCXX_NORETURN
  368. # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
  369. #endif
  370.  
  371. #ifndef _GLIBCXX_NOTHROW
  372. # ifdef __cplusplus
  373. # define _GLIBCXX_NOTHROW throw()
  374. # else
  375. # define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
  376. # endif
  377. #endif
  378.  
  379. // End of prewritten config; the discovered settings follow.
  380. /* config.h. Generated from config.h.in by configure. */
  381. /* config.h.in. Generated from configure.ac by autoheader. */
  382.  
  383. /* Define to 1 if you have the `acosf' function. */
  384. #define _GLIBCXX_HAVE_ACOSF 1
  385.  
  386. /* Define to 1 if you have the `acosl' function. */
  387. #define _GLIBCXX_HAVE_ACOSL 1
  388.  
  389. /* Define to 1 if you have the `asinf' function. */
  390. #define _GLIBCXX_HAVE_ASINF 1
  391.  
  392. /* Define to 1 if you have the `asinl' function. */
  393. #define _GLIBCXX_HAVE_ASINL 1
  394.  
  395. /* Define to 1 if the target assembler supports .symver directive. */
  396. #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
  397.  
  398. /* Define to 1 if you have the `atan2f' function. */
  399. #define _GLIBCXX_HAVE_ATAN2F 1
  400.  
  401. /* Define to 1 if you have the `atan2l' function. */
  402. #define _GLIBCXX_HAVE_ATAN2L 1
  403.  
  404. /* Define to 1 if you have the `atanf' function. */
  405. #define _GLIBCXX_HAVE_ATANF 1
  406.  
  407. /* Define to 1 if you have the `atanl' function. */
  408. #define _GLIBCXX_HAVE_ATANL 1
  409.  
  410. /* Define to 1 if the target assembler supports thread-local storage. */
  411. /* #undef _GLIBCXX_HAVE_CC_TLS */
  412.  
  413. /* Define to 1 if you have the `ceilf' function. */
  414. #define _GLIBCXX_HAVE_CEILF 1
  415.  
  416. /* Define to 1 if you have the `ceill' function. */
  417. #define _GLIBCXX_HAVE_CEILL 1
  418.  
  419. /* Define to 1 if you have the <complex.h> header file. */
  420. #define _GLIBCXX_HAVE_COMPLEX_H 1
  421.  
  422. /* Define to 1 if you have the `cosf' function. */
  423. #define _GLIBCXX_HAVE_COSF 1
  424.  
  425. /* Define to 1 if you have the `coshf' function. */
  426. #define _GLIBCXX_HAVE_COSHF 1
  427.  
  428. /* Define to 1 if you have the `coshl' function. */
  429. #define _GLIBCXX_HAVE_COSHL 1
  430.  
  431. /* Define to 1 if you have the `cosl' function. */
  432. #define _GLIBCXX_HAVE_COSL 1
  433.  
  434. /* Define to 1 if you have the <dlfcn.h> header file. */
  435. #define _GLIBCXX_HAVE_DLFCN_H 1
  436.  
  437. /* Define if EBADMSG exists. */
  438. #define _GLIBCXX_HAVE_EBADMSG 1
  439.  
  440. /* Define if ECANCELED exists. */
  441. #define _GLIBCXX_HAVE_ECANCELED 1
  442.  
  443. /* Define if EIDRM exists. */
  444. #define _GLIBCXX_HAVE_EIDRM 1
  445.  
  446. /* Define to 1 if you have the <endian.h> header file. */
  447. #define _GLIBCXX_HAVE_ENDIAN_H 1
  448.  
  449. /* Define if ENODATA exists. */
  450. #define _GLIBCXX_HAVE_ENODATA 1
  451.  
  452. /* Define if ENOLINK exists. */
  453. #define _GLIBCXX_HAVE_ENOLINK 1
  454.  
  455. /* Define if ENOSR exists. */
  456. #define _GLIBCXX_HAVE_ENOSR 1
  457.  
  458. /* Define if ENOSTR exists. */
  459. #define _GLIBCXX_HAVE_ENOSTR 1
  460.  
  461. /* Define if ENOTRECOVERABLE exists. */
  462. #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
  463.  
  464. /* Define if ENOTSUP exists. */
  465. #define _GLIBCXX_HAVE_ENOTSUP 1
  466.  
  467. /* Define if EOVERFLOW exists. */
  468. #define _GLIBCXX_HAVE_EOVERFLOW 1
  469.  
  470. /* Define if EOWNERDEAD exists. */
  471. #define _GLIBCXX_HAVE_EOWNERDEAD 1
  472.  
  473. /* Define if EPROTO exists. */
  474. #define _GLIBCXX_HAVE_EPROTO 1
  475.  
  476. /* Define if ETIME exists. */
  477. #define _GLIBCXX_HAVE_ETIME 1
  478.  
  479. /* Define if ETXTBSY exists. */
  480. #define _GLIBCXX_HAVE_ETXTBSY 1
  481.  
  482. /* Define to 1 if you have the <execinfo.h> header file. */
  483. #define _GLIBCXX_HAVE_EXECINFO_H 1
  484.  
  485. /* Define to 1 if you have the `expf' function. */
  486. #define _GLIBCXX_HAVE_EXPF 1
  487.  
  488. /* Define to 1 if you have the `expl' function. */
  489. #define _GLIBCXX_HAVE_EXPL 1
  490.  
  491. /* Define to 1 if you have the `fabsf' function. */
  492. #define _GLIBCXX_HAVE_FABSF 1
  493.  
  494. /* Define to 1 if you have the `fabsl' function. */
  495. #define _GLIBCXX_HAVE_FABSL 1
  496.  
  497. /* Define to 1 if you have the <fenv.h> header file. */
  498. #define _GLIBCXX_HAVE_FENV_H 1
  499.  
  500. /* Define to 1 if you have the `finite' function. */
  501. #define _GLIBCXX_HAVE_FINITE 1
  502.  
  503. /* Define to 1 if you have the `finitef' function. */
  504. #define _GLIBCXX_HAVE_FINITEF 1
  505.  
  506. /* Define to 1 if you have the `finitel' function. */
  507. #define _GLIBCXX_HAVE_FINITEL 1
  508.  
  509. /* Define to 1 if you have the <float.h> header file. */
  510. #define _GLIBCXX_HAVE_FLOAT_H 1
  511.  
  512. /* Define to 1 if you have the `floorf' function. */
  513. #define _GLIBCXX_HAVE_FLOORF 1
  514.  
  515. /* Define to 1 if you have the `floorl' function. */
  516. #define _GLIBCXX_HAVE_FLOORL 1
  517.  
  518. /* Define to 1 if you have the `fmodf' function. */
  519. #define _GLIBCXX_HAVE_FMODF 1
  520.  
  521. /* Define to 1 if you have the `fmodl' function. */
  522. #define _GLIBCXX_HAVE_FMODL 1
  523.  
  524. /* Define to 1 if you have the `fpclass' function. */
  525. /* #undef _GLIBCXX_HAVE_FPCLASS */
  526.  
  527. /* Define to 1 if you have the <fp.h> header file. */
  528. /* #undef _GLIBCXX_HAVE_FP_H */
  529.  
  530. /* Define to 1 if you have the `frexpf' function. */
  531. #define _GLIBCXX_HAVE_FREXPF 1
  532.  
  533. /* Define to 1 if you have the `frexpl' function. */
  534. #define _GLIBCXX_HAVE_FREXPL 1
  535.  
  536. /* Define if _Unwind_GetIPInfo is available. */
  537. #define _GLIBCXX_HAVE_GETIPINFO 1
  538.  
  539. /* Define if gthr-default.h exists (meaning that threading support is
  540. enabled). */
  541. #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
  542.  
  543. /* Define to 1 if you have the `hypot' function. */
  544. #define _GLIBCXX_HAVE_HYPOT 1
  545.  
  546. /* Define to 1 if you have the `hypotf' function. */
  547. #define _GLIBCXX_HAVE_HYPOTF 1
  548.  
  549. /* Define to 1 if you have the `hypotl' function. */
  550. #define _GLIBCXX_HAVE_HYPOTL 1
  551.  
  552. /* Define if you have the iconv() function. */
  553. #define _GLIBCXX_HAVE_ICONV 1
  554.  
  555. /* Define to 1 if you have the <ieeefp.h> header file. */
  556. /* #undef _GLIBCXX_HAVE_IEEEFP_H */
  557.  
  558. /* Define if int64_t is available in <stdint.h>. */
  559. #define _GLIBCXX_HAVE_INT64_T 1
  560.  
  561. /* Define if int64_t is a long. */
  562. #define _GLIBCXX_HAVE_INT64_T_LONG 1
  563.  
  564. /* Define if int64_t is a long long. */
  565. /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
  566.  
  567. /* Define to 1 if you have the <inttypes.h> header file. */
  568. #define _GLIBCXX_HAVE_INTTYPES_H 1
  569.  
  570. /* Define to 1 if you have the `isinf' function. */
  571. #define _GLIBCXX_HAVE_ISINF 1
  572.  
  573. /* Define to 1 if you have the `isinff' function. */
  574. #define _GLIBCXX_HAVE_ISINFF 1
  575.  
  576. /* Define to 1 if you have the `isinfl' function. */
  577. #define _GLIBCXX_HAVE_ISINFL 1
  578.  
  579. /* Define to 1 if you have the `isnan' function. */
  580. #define _GLIBCXX_HAVE_ISNAN 1
  581.  
  582. /* Define to 1 if you have the `isnanf' function. */
  583. #define _GLIBCXX_HAVE_ISNANF 1
  584.  
  585. /* Define to 1 if you have the `isnanl' function. */
  586. #define _GLIBCXX_HAVE_ISNANL 1
  587.  
  588. /* Defined if iswblank exists. */
  589. #define _GLIBCXX_HAVE_ISWBLANK 1
  590.  
  591. /* Define if LC_MESSAGES is available in <locale.h>. */
  592. #define _GLIBCXX_HAVE_LC_MESSAGES 1
  593.  
  594. /* Define to 1 if you have the `ldexpf' function. */
  595. #define _GLIBCXX_HAVE_LDEXPF 1
  596.  
  597. /* Define to 1 if you have the `ldexpl' function. */
  598. #define _GLIBCXX_HAVE_LDEXPL 1
  599.  
  600. /* Define to 1 if you have the <libintl.h> header file. */
  601. #define _GLIBCXX_HAVE_LIBINTL_H 1
  602.  
  603. /* Only used in build directory testsuite_hooks.h. */
  604. /* #undef _GLIBCXX_HAVE_LIMIT_AS */
  605.  
  606. /* Only used in build directory testsuite_hooks.h. */
  607. /* #undef _GLIBCXX_HAVE_LIMIT_DATA */
  608.  
  609. /* Only used in build directory testsuite_hooks.h. */
  610. /* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */
  611.  
  612. /* Only used in build directory testsuite_hooks.h. */
  613. /* #undef _GLIBCXX_HAVE_LIMIT_RSS */
  614.  
  615. /* Only used in build directory testsuite_hooks.h. */
  616. /* #undef _GLIBCXX_HAVE_LIMIT_VMEM */
  617.  
  618. /* Define if futex syscall is available. */
  619. #define _GLIBCXX_HAVE_LINUX_FUTEX 1
  620.  
  621. /* Define to 1 if you have the <locale.h> header file. */
  622. #define _GLIBCXX_HAVE_LOCALE_H 1
  623.  
  624. /* Define to 1 if you have the `log10f' function. */
  625. #define _GLIBCXX_HAVE_LOG10F 1
  626.  
  627. /* Define to 1 if you have the `log10l' function. */
  628. #define _GLIBCXX_HAVE_LOG10L 1
  629.  
  630. /* Define to 1 if you have the `logf' function. */
  631. #define _GLIBCXX_HAVE_LOGF 1
  632.  
  633. /* Define to 1 if you have the `logl' function. */
  634. #define _GLIBCXX_HAVE_LOGL 1
  635.  
  636. /* Define to 1 if you have the <machine/endian.h> header file. */
  637. /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
  638.  
  639. /* Define to 1 if you have the <machine/param.h> header file. */
  640. /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
  641.  
  642. /* Define if mbstate_t exists in wchar.h. */
  643. #define _GLIBCXX_HAVE_MBSTATE_T 1
  644.  
  645. /* Define to 1 if you have the <memory.h> header file. */
  646. #define _GLIBCXX_HAVE_MEMORY_H 1
  647.  
  648. /* Define to 1 if you have the `modf' function. */
  649. #define _GLIBCXX_HAVE_MODF 1
  650.  
  651. /* Define to 1 if you have the `modff' function. */
  652. #define _GLIBCXX_HAVE_MODFF 1
  653.  
  654. /* Define to 1 if you have the `modfl' function. */
  655. #define _GLIBCXX_HAVE_MODFL 1
  656.  
  657. /* Define to 1 if you have the <nan.h> header file. */
  658. /* #undef _GLIBCXX_HAVE_NAN_H */
  659.  
  660. /* Define if poll is available in <poll.h>. */
  661. #define _GLIBCXX_HAVE_POLL 1
  662.  
  663. /* Define to 1 if you have the `powf' function. */
  664. #define _GLIBCXX_HAVE_POWF 1
  665.  
  666. /* Define to 1 if you have the `powl' function. */
  667. #define _GLIBCXX_HAVE_POWL 1
  668.  
  669. /* Define to 1 if you have the `qfpclass' function. */
  670. /* #undef _GLIBCXX_HAVE_QFPCLASS */
  671.  
  672. /* Define to 1 if you have the `setenv' function. */
  673. /* #undef _GLIBCXX_HAVE_SETENV */
  674.  
  675. /* Define to 1 if you have the `sincos' function. */
  676. #define _GLIBCXX_HAVE_SINCOS 1
  677.  
  678. /* Define to 1 if you have the `sincosf' function. */
  679. #define _GLIBCXX_HAVE_SINCOSF 1
  680.  
  681. /* Define to 1 if you have the `sincosl' function. */
  682. #define _GLIBCXX_HAVE_SINCOSL 1
  683.  
  684. /* Define to 1 if you have the `sinf' function. */
  685. #define _GLIBCXX_HAVE_SINF 1
  686.  
  687. /* Define to 1 if you have the `sinhf' function. */
  688. #define _GLIBCXX_HAVE_SINHF 1
  689.  
  690. /* Define to 1 if you have the `sinhl' function. */
  691. #define _GLIBCXX_HAVE_SINHL 1
  692.  
  693. /* Define to 1 if you have the `sinl' function. */
  694. #define _GLIBCXX_HAVE_SINL 1
  695.  
  696. /* Define to 1 if you have the `sqrtf' function. */
  697. #define _GLIBCXX_HAVE_SQRTF 1
  698.  
  699. /* Define to 1 if you have the `sqrtl' function. */
  700. #define _GLIBCXX_HAVE_SQRTL 1
  701.  
  702. /* Define to 1 if you have the <stdbool.h> header file. */
  703. #define _GLIBCXX_HAVE_STDBOOL_H 1
  704.  
  705. /* Define to 1 if you have the <stdint.h> header file. */
  706. #define _GLIBCXX_HAVE_STDINT_H 1
  707.  
  708. /* Define to 1 if you have the <stdlib.h> header file. */
  709. #define _GLIBCXX_HAVE_STDLIB_H 1
  710.  
  711. /* Define if strerror_l is available in <string.h>. */
  712. #define _GLIBCXX_HAVE_STRERROR_L 1
  713.  
  714. /* Define if strerror_r is available in <string.h>. */
  715. #define _GLIBCXX_HAVE_STRERROR_R 1
  716.  
  717. /* Define to 1 if you have the <strings.h> header file. */
  718. #define _GLIBCXX_HAVE_STRINGS_H 1
  719.  
  720. /* Define to 1 if you have the <string.h> header file. */
  721. #define _GLIBCXX_HAVE_STRING_H 1
  722.  
  723. /* Define to 1 if you have the `strtof' function. */
  724. #define _GLIBCXX_HAVE_STRTOF 1
  725.  
  726. /* Define to 1 if you have the `strtold' function. */
  727. #define _GLIBCXX_HAVE_STRTOLD 1
  728.  
  729. /* Define if strxfrm_l is available in <string.h>. */
  730. #define _GLIBCXX_HAVE_STRXFRM_L 1
  731.  
  732. /* Define to 1 if you have the <sys/filio.h> header file. */
  733. /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
  734.  
  735. /* Define to 1 if you have the <sys/ioctl.h> header file. */
  736. #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
  737.  
  738. /* Define to 1 if you have the <sys/ipc.h> header file. */
  739. #define _GLIBCXX_HAVE_SYS_IPC_H 1
  740.  
  741. /* Define to 1 if you have the <sys/isa_defs.h> header file. */
  742. /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
  743.  
  744. /* Define to 1 if you have the <sys/machine.h> header file. */
  745. /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
  746.  
  747. /* Define to 1 if you have the <sys/param.h> header file. */
  748. #define _GLIBCXX_HAVE_SYS_PARAM_H 1
  749.  
  750. /* Define to 1 if you have the <sys/resource.h> header file. */
  751. #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
  752.  
  753. /* Define to 1 if you have the <sys/sem.h> header file. */
  754. #define _GLIBCXX_HAVE_SYS_SEM_H 1
  755.  
  756. /* Define to 1 if you have the <sys/stat.h> header file. */
  757. #define _GLIBCXX_HAVE_SYS_STAT_H 1
  758.  
  759. /* Define to 1 if you have the <sys/time.h> header file. */
  760. #define _GLIBCXX_HAVE_SYS_TIME_H 1
  761.  
  762. /* Define to 1 if you have the <sys/types.h> header file. */
  763. #define _GLIBCXX_HAVE_SYS_TYPES_H 1
  764.  
  765. /* Define to 1 if you have the <sys/uio.h> header file. */
  766. #define _GLIBCXX_HAVE_SYS_UIO_H 1
  767.  
  768. /* Define if S_IFREG is available in <sys/stat.h>. */
  769. /* #undef _GLIBCXX_HAVE_S_IFREG */
  770.  
  771. /* Define if S_IFREG is available in <sys/stat.h>. */
  772. #define _GLIBCXX_HAVE_S_ISREG 1
  773.  
  774. /* Define to 1 if you have the `tanf' function. */
  775. #define _GLIBCXX_HAVE_TANF 1
  776.  
  777. /* Define to 1 if you have the `tanhf' function. */
  778. #define _GLIBCXX_HAVE_TANHF 1
  779.  
  780. /* Define to 1 if you have the `tanhl' function. */
  781. #define _GLIBCXX_HAVE_TANHL 1
  782.  
  783. /* Define to 1 if you have the `tanl' function. */
  784. #define _GLIBCXX_HAVE_TANL 1
  785.  
  786. /* Define to 1 if you have the <tgmath.h> header file. */
  787. #define _GLIBCXX_HAVE_TGMATH_H 1
  788.  
  789. /* Define to 1 if the target supports thread-local storage. */
  790. #define _GLIBCXX_HAVE_TLS 1
  791.  
  792. /* Define to 1 if you have the <unistd.h> header file. */
  793. #define _GLIBCXX_HAVE_UNISTD_H 1
  794.  
  795. /* Defined if vfwscanf exists. */
  796. #define _GLIBCXX_HAVE_VFWSCANF 1
  797.  
  798. /* Defined if vswscanf exists. */
  799. #define _GLIBCXX_HAVE_VSWSCANF 1
  800.  
  801. /* Defined if vwscanf exists. */
  802. #define _GLIBCXX_HAVE_VWSCANF 1
  803.  
  804. /* Define to 1 if you have the <wchar.h> header file. */
  805. #define _GLIBCXX_HAVE_WCHAR_H 1
  806.  
  807. /* Defined if wcstof exists. */
  808. #define _GLIBCXX_HAVE_WCSTOF 1
  809.  
  810. /* Define to 1 if you have the <wctype.h> header file. */
  811. #define _GLIBCXX_HAVE_WCTYPE_H 1
  812.  
  813. /* Define if writev is available in <sys/uio.h>. */
  814. #define _GLIBCXX_HAVE_WRITEV 1
  815.  
  816. /* Define to 1 if you have the `_acosf' function. */
  817. /* #undef _GLIBCXX_HAVE__ACOSF */
  818.  
  819. /* Define to 1 if you have the `_acosl' function. */
  820. /* #undef _GLIBCXX_HAVE__ACOSL */
  821.  
  822. /* Define to 1 if you have the `_asinf' function. */
  823. /* #undef _GLIBCXX_HAVE__ASINF */
  824.  
  825. /* Define to 1 if you have the `_asinl' function. */
  826. /* #undef _GLIBCXX_HAVE__ASINL */
  827.  
  828. /* Define to 1 if you have the `_atan2f' function. */
  829. /* #undef _GLIBCXX_HAVE__ATAN2F */
  830.  
  831. /* Define to 1 if you have the `_atan2l' function. */
  832. /* #undef _GLIBCXX_HAVE__ATAN2L */
  833.  
  834. /* Define to 1 if you have the `_atanf' function. */
  835. /* #undef _GLIBCXX_HAVE__ATANF */
  836.  
  837. /* Define to 1 if you have the `_atanl' function. */
  838. /* #undef _GLIBCXX_HAVE__ATANL */
  839.  
  840. /* Define to 1 if you have the `_ceilf' function. */
  841. /* #undef _GLIBCXX_HAVE__CEILF */
  842.  
  843. /* Define to 1 if you have the `_ceill' function. */
  844. /* #undef _GLIBCXX_HAVE__CEILL */
  845.  
  846. /* Define to 1 if you have the `_cosf' function. */
  847. /* #undef _GLIBCXX_HAVE__COSF */
  848.  
  849. /* Define to 1 if you have the `_coshf' function. */
  850. /* #undef _GLIBCXX_HAVE__COSHF */
  851.  
  852. /* Define to 1 if you have the `_coshl' function. */
  853. /* #undef _GLIBCXX_HAVE__COSHL */
  854.  
  855. /* Define to 1 if you have the `_cosl' function. */
  856. /* #undef _GLIBCXX_HAVE__COSL */
  857.  
  858. /* Define to 1 if you have the `_expf' function. */
  859. /* #undef _GLIBCXX_HAVE__EXPF */
  860.  
  861. /* Define to 1 if you have the `_expl' function. */
  862. /* #undef _GLIBCXX_HAVE__EXPL */
  863.  
  864. /* Define to 1 if you have the `_fabsf' function. */
  865. /* #undef _GLIBCXX_HAVE__FABSF */
  866.  
  867. /* Define to 1 if you have the `_fabsl' function. */
  868. /* #undef _GLIBCXX_HAVE__FABSL */
  869.  
  870. /* Define to 1 if you have the `_finite' function. */
  871. /* #undef _GLIBCXX_HAVE__FINITE */
  872.  
  873. /* Define to 1 if you have the `_finitef' function. */
  874. /* #undef _GLIBCXX_HAVE__FINITEF */
  875.  
  876. /* Define to 1 if you have the `_finitel' function. */
  877. /* #undef _GLIBCXX_HAVE__FINITEL */
  878.  
  879. /* Define to 1 if you have the `_floorf' function. */
  880. /* #undef _GLIBCXX_HAVE__FLOORF */
  881.  
  882. /* Define to 1 if you have the `_floorl' function. */
  883. /* #undef _GLIBCXX_HAVE__FLOORL */
  884.  
  885. /* Define to 1 if you have the `_fmodf' function. */
  886. /* #undef _GLIBCXX_HAVE__FMODF */
  887.  
  888. /* Define to 1 if you have the `_fmodl' function. */
  889. /* #undef _GLIBCXX_HAVE__FMODL */
  890.  
  891. /* Define to 1 if you have the `_fpclass' function. */
  892. /* #undef _GLIBCXX_HAVE__FPCLASS */
  893.  
  894. /* Define to 1 if you have the `_frexpf' function. */
  895. /* #undef _GLIBCXX_HAVE__FREXPF */
  896.  
  897. /* Define to 1 if you have the `_frexpl' function. */
  898. /* #undef _GLIBCXX_HAVE__FREXPL */
  899.  
  900. /* Define to 1 if you have the `_hypot' function. */
  901. /* #undef _GLIBCXX_HAVE__HYPOT */
  902.  
  903. /* Define to 1 if you have the `_hypotf' function. */
  904. /* #undef _GLIBCXX_HAVE__HYPOTF */
  905.  
  906. /* Define to 1 if you have the `_hypotl' function. */
  907. /* #undef _GLIBCXX_HAVE__HYPOTL */
  908.  
  909. /* Define to 1 if you have the `_isinf' function. */
  910. /* #undef _GLIBCXX_HAVE__ISINF */
  911.  
  912. /* Define to 1 if you have the `_isinff' function. */
  913. /* #undef _GLIBCXX_HAVE__ISINFF */
  914.  
  915. /* Define to 1 if you have the `_isinfl' function. */
  916. /* #undef _GLIBCXX_HAVE__ISINFL */
  917.  
  918. /* Define to 1 if you have the `_isnan' function. */
  919. /* #undef _GLIBCXX_HAVE__ISNAN */
  920.  
  921. /* Define to 1 if you have the `_isnanf' function. */
  922. /* #undef _GLIBCXX_HAVE__ISNANF */
  923.  
  924. /* Define to 1 if you have the `_isnanl' function. */
  925. /* #undef _GLIBCXX_HAVE__ISNANL */
  926.  
  927. /* Define to 1 if you have the `_ldexpf' function. */
  928. /* #undef _GLIBCXX_HAVE__LDEXPF */
  929.  
  930. /* Define to 1 if you have the `_ldexpl' function. */
  931. /* #undef _GLIBCXX_HAVE__LDEXPL */
  932.  
  933. /* Define to 1 if you have the `_log10f' function. */
  934. /* #undef _GLIBCXX_HAVE__LOG10F */
  935.  
  936. /* Define to 1 if you have the `_log10l' function. */
  937. /* #undef _GLIBCXX_HAVE__LOG10L */
  938.  
  939. /* Define to 1 if you have the `_logf' function. */
  940. /* #undef _GLIBCXX_HAVE__LOGF */
  941.  
  942. /* Define to 1 if you have the `_logl' function. */
  943. /* #undef _GLIBCXX_HAVE__LOGL */
  944.  
  945. /* Define to 1 if you have the `_modf' function. */
  946. /* #undef _GLIBCXX_HAVE__MODF */
  947.  
  948. /* Define to 1 if you have the `_modff' function. */
  949. /* #undef _GLIBCXX_HAVE__MODFF */
  950.  
  951. /* Define to 1 if you have the `_modfl' function. */
  952. /* #undef _GLIBCXX_HAVE__MODFL */
  953.  
  954. /* Define to 1 if you have the `_powf' function. */
  955. /* #undef _GLIBCXX_HAVE__POWF */
  956.  
  957. /* Define to 1 if you have the `_powl' function. */
  958. /* #undef _GLIBCXX_HAVE__POWL */
  959.  
  960. /* Define to 1 if you have the `_qfpclass' function. */
  961. /* #undef _GLIBCXX_HAVE__QFPCLASS */
  962.  
  963. /* Define to 1 if you have the `_sincos' function. */
  964. /* #undef _GLIBCXX_HAVE__SINCOS */
  965.  
  966. /* Define to 1 if you have the `_sincosf' function. */
  967. /* #undef _GLIBCXX_HAVE__SINCOSF */
  968.  
  969. /* Define to 1 if you have the `_sincosl' function. */
  970. /* #undef _GLIBCXX_HAVE__SINCOSL */
  971.  
  972. /* Define to 1 if you have the `_sinf' function. */
  973. /* #undef _GLIBCXX_HAVE__SINF */
  974.  
  975. /* Define to 1 if you have the `_sinhf' function. */
  976. /* #undef _GLIBCXX_HAVE__SINHF */
  977.  
  978. /* Define to 1 if you have the `_sinhl' function. */
  979. /* #undef _GLIBCXX_HAVE__SINHL */
  980.  
  981. /* Define to 1 if you have the `_sinl' function. */
  982. /* #undef _GLIBCXX_HAVE__SINL */
  983.  
  984. /* Define to 1 if you have the `_sqrtf' function. */
  985. /* #undef _GLIBCXX_HAVE__SQRTF */
  986.  
  987. /* Define to 1 if you have the `_sqrtl' function. */
  988. /* #undef _GLIBCXX_HAVE__SQRTL */
  989.  
  990. /* Define to 1 if you have the `_tanf' function. */
  991. /* #undef _GLIBCXX_HAVE__TANF */
  992.  
  993. /* Define to 1 if you have the `_tanhf' function. */
  994. /* #undef _GLIBCXX_HAVE__TANHF */
  995.  
  996. /* Define to 1 if you have the `_tanhl' function. */
  997. /* #undef _GLIBCXX_HAVE__TANHL */
  998.  
  999. /* Define to 1 if you have the `_tanl' function. */
  1000. /* #undef _GLIBCXX_HAVE__TANL */
  1001.  
  1002. /* Define as const if the declaration of iconv() needs const. */
  1003. #define _GLIBCXX_ICONV_CONST
  1004.  
  1005. /* Define to the sub-directory in which libtool stores uninstalled libraries.
  1006. */
  1007. #define LT_OBJDIR ".libs/"
  1008.  
  1009. /* Name of package */
  1010. /* #undef _GLIBCXX_PACKAGE */
  1011.  
  1012. /* Define to the address where bug reports for this package should be sent. */
  1013. #define _GLIBCXX_PACKAGE_BUGREPORT ""
  1014.  
  1015. /* Define to the full name of this package. */
  1016. #define _GLIBCXX_PACKAGE_NAME "package-unused"
  1017.  
  1018. /* Define to the full name and version of this package. */
  1019. #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
  1020.  
  1021. /* Define to the one symbol short name of this package. */
  1022. #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
  1023.  
  1024. /* Define to the home page for this package. */
  1025. #define _GLIBCXX_PACKAGE_URL ""
  1026.  
  1027. /* Define to the version of this package. */
  1028. #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
  1029.  
  1030. /* The size of `char', as computed by sizeof. */
  1031. /* #undef SIZEOF_CHAR */
  1032.  
  1033. /* The size of `int', as computed by sizeof. */
  1034. /* #undef SIZEOF_INT */
  1035.  
  1036. /* The size of `long', as computed by sizeof. */
  1037. /* #undef SIZEOF_LONG */
  1038.  
  1039. /* The size of `short', as computed by sizeof. */
  1040. /* #undef SIZEOF_SHORT */
  1041.  
  1042. /* The size of `void *', as computed by sizeof. */
  1043. /* #undef SIZEOF_VOID_P */
  1044.  
  1045. /* Define to 1 if you have the ANSI C header files. */
  1046. #define STDC_HEADERS 1
  1047.  
  1048. /* Version number of package */
  1049. /* #undef _GLIBCXX_VERSION */
  1050.  
  1051. /* Define if builtin atomic operations for bool are supported on this host. */
  1052. #define _GLIBCXX_ATOMIC_BUILTINS_1 1
  1053.  
  1054. /* Define if builtin atomic operations for short are supported on this host.
  1055. */
  1056. #define _GLIBCXX_ATOMIC_BUILTINS_2 1
  1057.  
  1058. /* Define if builtin atomic operations for int are supported on this host. */
  1059. #define _GLIBCXX_ATOMIC_BUILTINS_4 1
  1060.  
  1061. /* Define if builtin atomic operations for long long are supported on this
  1062. host. */
  1063. #define _GLIBCXX_ATOMIC_BUILTINS_8 1
  1064.  
  1065. /* Define to use concept checking code from the boost libraries. */
  1066. /* #undef _GLIBCXX_CONCEPT_CHECKS */
  1067.  
  1068. /* Define if a fully dynamic basic_string is wanted. */
  1069. /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
  1070.  
  1071. /* Define if gthreads library is available. */
  1072. #define _GLIBCXX_HAS_GTHREADS 1
  1073.  
  1074. /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
  1075. #define _GLIBCXX_HOSTED 1
  1076.  
  1077. /* Define if compatibility should be provided for -mlong-double-64. */
  1078.  
  1079. /* Define if ptrdiff_t is int. */
  1080. /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
  1081.  
  1082. /* Define if using setrlimit to set resource limits during "make check" */
  1083. /* #undef _GLIBCXX_RES_LIMITS */
  1084.  
  1085. /* Define if size_t is unsigned int. */
  1086. /* #undef _GLIBCXX_SIZE_T_IS_UINT */
  1087.  
  1088. /* Define if the compiler is configured for setjmp/longjmp exceptions. */
  1089. /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
  1090.  
  1091. /* Define if EOF == -1, SEEK_CUR == 1, SEEK_END == 2. */
  1092. #define _GLIBCXX_STDIO_MACROS 1
  1093.  
  1094. /* Define to use symbol versioning in the shared library. */
  1095. #define _GLIBCXX_SYMVER 1
  1096.  
  1097. /* Define to use darwin versioning in the shared library. */
  1098. /* #undef _GLIBCXX_SYMVER_DARWIN */
  1099.  
  1100. /* Define to use GNU versioning in the shared library. */
  1101. #define _GLIBCXX_SYMVER_GNU 1
  1102.  
  1103. /* Define to use GNU namespace versioning in the shared library. */
  1104. /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
  1105.  
  1106. /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
  1107. <stdio.h>, and <stdlib.h> can be used or exposed. */
  1108. #define _GLIBCXX_USE_C99 1
  1109.  
  1110. /* Define if C99 functions in <complex.h> should be used in <complex>. Using
  1111. compiler builtins for these functions requires corresponding C99 library
  1112. functions to be present. */
  1113. #define _GLIBCXX_USE_C99_COMPLEX 1
  1114.  
  1115. /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
  1116. Using compiler builtins for these functions requires corresponding C99
  1117. library functions to be present. */
  1118. #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
  1119.  
  1120. /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
  1121. namespace std::tr1. */
  1122. #define _GLIBCXX_USE_C99_CTYPE_TR1 1
  1123.  
  1124. /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
  1125. namespace std::tr1. */
  1126. #define _GLIBCXX_USE_C99_FENV_TR1 1
  1127.  
  1128. /* Define if C99 functions in <inttypes.h> should be imported in
  1129. <tr1/cinttypes> in namespace std::tr1. */
  1130. #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
  1131.  
  1132. /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
  1133. <tr1/cinttypes> in namespace std::tr1. */
  1134. #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
  1135.  
  1136. /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
  1137. in namespace std. */
  1138. #define _GLIBCXX_USE_C99_MATH 1
  1139.  
  1140. /* Define if C99 functions or macros in <math.h> should be imported in
  1141. <tr1/cmath> in namespace std::tr1. */
  1142. #define _GLIBCXX_USE_C99_MATH_TR1 1
  1143.  
  1144. /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
  1145. namespace std::tr1. */
  1146. #define _GLIBCXX_USE_C99_STDINT_TR1 1
  1147.  
  1148. /* Defined if clock_gettime has monotonic clock support. */
  1149. /* #undef _GLIBCXX_USE_CLOCK_MONOTONIC */
  1150.  
  1151. /* Defined if clock_gettime has realtime clock support. */
  1152. /* #undef _GLIBCXX_USE_CLOCK_REALTIME */
  1153.  
  1154. /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
  1155. this host. */
  1156. #define _GLIBCXX_USE_DECIMAL_FLOAT 1
  1157.  
  1158. /* Defined if gettimeofday is available. */
  1159. #define _GLIBCXX_USE_GETTIMEOFDAY 1
  1160.  
  1161. /* Define if LFS support is available. */
  1162. #define _GLIBCXX_USE_LFS 1
  1163.  
  1164. /* Define if code specialized for long long should be used. */
  1165. #define _GLIBCXX_USE_LONG_LONG 1
  1166.  
  1167. /* Defined if nanosleep is available. */
  1168. #define _GLIBCXX_USE_NANOSLEEP 1
  1169.  
  1170. /* Define if NLS translations are to be used. */
  1171. #define _GLIBCXX_USE_NLS 1
  1172.  
  1173. /* Define if /dev/random and /dev/urandom are available for the random_device
  1174. of TR1 (Chapter 5.1). */
  1175. #define _GLIBCXX_USE_RANDOM_TR1 1
  1176.  
  1177. /* Defined if sched_yield is available. */
  1178. #define _GLIBCXX_USE_SCHED_YIELD 1
  1179.  
  1180. /* Define if code specialized for wchar_t should be used. */
  1181. #define _GLIBCXX_USE_WCHAR_T 1
  1182.  
  1183. #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
  1184. # define _GLIBCXX_HAVE_ACOSF 1
  1185. # define acosf _acosf
  1186. #endif
  1187.  
  1188. #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
  1189. # define _GLIBCXX_HAVE_ACOSL 1
  1190. # define acosl _acosl
  1191. #endif
  1192.  
  1193. #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
  1194. # define _GLIBCXX_HAVE_ASINF 1
  1195. # define asinf _asinf
  1196. #endif
  1197.  
  1198. #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
  1199. # define _GLIBCXX_HAVE_ASINL 1
  1200. # define asinl _asinl
  1201. #endif
  1202.  
  1203. #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
  1204. # define _GLIBCXX_HAVE_ATAN2F 1
  1205. # define atan2f _atan2f
  1206. #endif
  1207.  
  1208. #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
  1209. # define _GLIBCXX_HAVE_ATAN2L 1
  1210. # define atan2l _atan2l
  1211. #endif
  1212.  
  1213. #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
  1214. # define _GLIBCXX_HAVE_ATANF 1
  1215. # define atanf _atanf
  1216. #endif
  1217.  
  1218. #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
  1219. # define _GLIBCXX_HAVE_ATANL 1
  1220. # define atanl _atanl
  1221. #endif
  1222.  
  1223. #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
  1224. # define _GLIBCXX_HAVE_CEILF 1
  1225. # define ceilf _ceilf
  1226. #endif
  1227.  
  1228. #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
  1229. # define _GLIBCXX_HAVE_CEILL 1
  1230. # define ceill _ceill
  1231. #endif
  1232.  
  1233. #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
  1234. # define _GLIBCXX_HAVE_COSF 1
  1235. # define cosf _cosf
  1236. #endif
  1237.  
  1238. #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
  1239. # define _GLIBCXX_HAVE_COSHF 1
  1240. # define coshf _coshf
  1241. #endif
  1242.  
  1243. #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
  1244. # define _GLIBCXX_HAVE_COSHL 1
  1245. # define coshl _coshl
  1246. #endif
  1247.  
  1248. #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
  1249. # define _GLIBCXX_HAVE_COSL 1
  1250. # define cosl _cosl
  1251. #endif
  1252.  
  1253. #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
  1254. # define _GLIBCXX_HAVE_EXPF 1
  1255. # define expf _expf
  1256. #endif
  1257.  
  1258. #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
  1259. # define _GLIBCXX_HAVE_EXPL 1
  1260. # define expl _expl
  1261. #endif
  1262.  
  1263. #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
  1264. # define _GLIBCXX_HAVE_FABSF 1
  1265. # define fabsf _fabsf
  1266. #endif
  1267.  
  1268. #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
  1269. # define _GLIBCXX_HAVE_FABSL 1
  1270. # define fabsl _fabsl
  1271. #endif
  1272.  
  1273. #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
  1274. # define _GLIBCXX_HAVE_FINITE 1
  1275. # define finite _finite
  1276. #endif
  1277.  
  1278. #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
  1279. # define _GLIBCXX_HAVE_FINITEF 1
  1280. # define finitef _finitef
  1281. #endif
  1282.  
  1283. #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
  1284. # define _GLIBCXX_HAVE_FINITEL 1
  1285. # define finitel _finitel
  1286. #endif
  1287.  
  1288. #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
  1289. # define _GLIBCXX_HAVE_FLOORF 1
  1290. # define floorf _floorf
  1291. #endif
  1292.  
  1293. #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
  1294. # define _GLIBCXX_HAVE_FLOORL 1
  1295. # define floorl _floorl
  1296. #endif
  1297.  
  1298. #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
  1299. # define _GLIBCXX_HAVE_FMODF 1
  1300. # define fmodf _fmodf
  1301. #endif
  1302.  
  1303. #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
  1304. # define _GLIBCXX_HAVE_FMODL 1
  1305. # define fmodl _fmodl
  1306. #endif
  1307.  
  1308. #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
  1309. # define _GLIBCXX_HAVE_FPCLASS 1
  1310. # define fpclass _fpclass
  1311. #endif
  1312.  
  1313. #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
  1314. # define _GLIBCXX_HAVE_FREXPF 1
  1315. # define frexpf _frexpf
  1316. #endif
  1317.  
  1318. #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
  1319. # define _GLIBCXX_HAVE_FREXPL 1
  1320. # define frexpl _frexpl
  1321. #endif
  1322.  
  1323. #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
  1324. # define _GLIBCXX_HAVE_HYPOT 1
  1325. # define hypot _hypot
  1326. #endif
  1327.  
  1328. #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
  1329. # define _GLIBCXX_HAVE_HYPOTF 1
  1330. # define hypotf _hypotf
  1331. #endif
  1332.  
  1333. #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
  1334. # define _GLIBCXX_HAVE_HYPOTL 1
  1335. # define hypotl _hypotl
  1336. #endif
  1337.  
  1338. #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
  1339. # define _GLIBCXX_HAVE_ISINF 1
  1340. # define isinf _isinf
  1341. #endif
  1342.  
  1343. #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
  1344. # define _GLIBCXX_HAVE_ISINFF 1
  1345. # define isinff _isinff
  1346. #endif
  1347.  
  1348. #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
  1349. # define _GLIBCXX_HAVE_ISINFL 1
  1350. # define isinfl _isinfl
  1351. #endif
  1352.  
  1353. #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
  1354. # define _GLIBCXX_HAVE_ISNAN 1
  1355. # define isnan _isnan
  1356. #endif
  1357.  
  1358. #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
  1359. # define _GLIBCXX_HAVE_ISNANF 1
  1360. # define isnanf _isnanf
  1361. #endif
  1362.  
  1363. #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
  1364. # define _GLIBCXX_HAVE_ISNANL 1
  1365. # define isnanl _isnanl
  1366. #endif
  1367.  
  1368. #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
  1369. # define _GLIBCXX_HAVE_LDEXPF 1
  1370. # define ldexpf _ldexpf
  1371. #endif
  1372.  
  1373. #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
  1374. # define _GLIBCXX_HAVE_LDEXPL 1
  1375. # define ldexpl _ldexpl
  1376. #endif
  1377.  
  1378. #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
  1379. # define _GLIBCXX_HAVE_LOG10F 1
  1380. # define log10f _log10f
  1381. #endif
  1382.  
  1383. #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
  1384. # define _GLIBCXX_HAVE_LOG10L 1
  1385. # define log10l _log10l
  1386. #endif
  1387.  
  1388. #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
  1389. # define _GLIBCXX_HAVE_LOGF 1
  1390. # define logf _logf
  1391. #endif
  1392.  
  1393. #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
  1394. # define _GLIBCXX_HAVE_LOGL 1
  1395. # define logl _logl
  1396. #endif
  1397.  
  1398. #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
  1399. # define _GLIBCXX_HAVE_MODF 1
  1400. # define modf _modf
  1401. #endif
  1402.  
  1403. #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
  1404. # define _GLIBCXX_HAVE_MODFF 1
  1405. # define modff _modff
  1406. #endif
  1407.  
  1408. #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
  1409. # define _GLIBCXX_HAVE_MODFL 1
  1410. # define modfl _modfl
  1411. #endif
  1412.  
  1413. #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
  1414. # define _GLIBCXX_HAVE_POWF 1
  1415. # define powf _powf
  1416. #endif
  1417.  
  1418. #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
  1419. # define _GLIBCXX_HAVE_POWL 1
  1420. # define powl _powl
  1421. #endif
  1422.  
  1423. #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
  1424. # define _GLIBCXX_HAVE_QFPCLASS 1
  1425. # define qfpclass _qfpclass
  1426. #endif
  1427.  
  1428. #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
  1429. # define _GLIBCXX_HAVE_SINCOS 1
  1430. # define sincos _sincos
  1431. #endif
  1432.  
  1433. #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
  1434. # define _GLIBCXX_HAVE_SINCOSF 1
  1435. # define sincosf _sincosf
  1436. #endif
  1437.  
  1438. #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
  1439. # define _GLIBCXX_HAVE_SINCOSL 1
  1440. # define sincosl _sincosl
  1441. #endif
  1442.  
  1443. #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
  1444. # define _GLIBCXX_HAVE_SINF 1
  1445. # define sinf _sinf
  1446. #endif
  1447.  
  1448. #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
  1449. # define _GLIBCXX_HAVE_SINHF 1
  1450. # define sinhf _sinhf
  1451. #endif
  1452.  
  1453. #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
  1454. # define _GLIBCXX_HAVE_SINHL 1
  1455. # define sinhl _sinhl
  1456. #endif
  1457.  
  1458. #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
  1459. # define _GLIBCXX_HAVE_SINL 1
  1460. # define sinl _sinl
  1461. #endif
  1462.  
  1463. #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
  1464. # define _GLIBCXX_HAVE_SQRTF 1
  1465. # define sqrtf _sqrtf
  1466. #endif
  1467.  
  1468. #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
  1469. # define _GLIBCXX_HAVE_SQRTL 1
  1470. # define sqrtl _sqrtl
  1471. #endif
  1472.  
  1473. #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
  1474. # define _GLIBCXX_HAVE_STRTOF 1
  1475. # define strtof _strtof
  1476. #endif
  1477.  
  1478. #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
  1479. # define _GLIBCXX_HAVE_STRTOLD 1
  1480. # define strtold _strtold
  1481. #endif
  1482.  
  1483. #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
  1484. # define _GLIBCXX_HAVE_TANF 1
  1485. # define tanf _tanf
  1486. #endif
  1487.  
  1488. #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
  1489. # define _GLIBCXX_HAVE_TANHF 1
  1490. # define tanhf _tanhf
  1491. #endif
  1492.  
  1493. #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
  1494. # define _GLIBCXX_HAVE_TANHL 1
  1495. # define tanhl _tanhl
  1496. #endif
  1497.  
  1498. #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
  1499. # define _GLIBCXX_HAVE_TANL 1
  1500. # define tanl _tanl
  1501. #endif
  1502.  
  1503. #endif // _GLIBCXX_CXX_CONFIG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement