123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- #ifdef __GLIBCXX__
- #define BOOST_STDLIB "GNU libstdc++ version " BOOST_STRINGIZE(__GLIBCXX__)
- #else
- #define BOOST_STDLIB "GNU libstdc++ version " BOOST_STRINGIZE(__GLIBCPP__)
- #endif
- #if !defined(_GLIBCPP_USE_WCHAR_T) && !defined(_GLIBCXX_USE_WCHAR_T)
- # define BOOST_NO_CWCHAR
- # define BOOST_NO_CWCTYPE
- # define BOOST_NO_STD_WSTRING
- # define BOOST_NO_STD_WSTREAMBUF
- #endif
- #if defined(__osf__) && !defined(_REENTRANT) \
- && ( defined(_GLIBCXX_HAVE_GTHR_DEFAULT) || defined(_GLIBCPP_HAVE_GTHR_DEFAULT) )
- # define _REENTRANT
- #endif
- #ifdef __GLIBCXX__
- # if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \
- || defined(_GLIBCXX__PTHREADS)
-
-
-
-
-
- # define BOOST_HAS_THREADS
- # else
- # define BOOST_DISABLE_THREADS
- # endif
- #elif defined(__GLIBCPP__) \
- && !defined(_GLIBCPP_HAVE_GTHR_DEFAULT) \
- && !defined(_GLIBCPP__PTHREADS)
-
- # define BOOST_DISABLE_THREADS
- #endif
- #if (defined(linux) || defined(__linux) || defined(__linux__)) && defined(__arm__) && defined(_GLIBCPP_HAVE_GTHR_DEFAULT)
- # define BOOST_HAS_THREADS
- #endif
- #if !defined(_GLIBCPP_USE_LONG_LONG) \
- && !defined(_GLIBCXX_USE_LONG_LONG)\
- && defined(BOOST_HAS_LONG_LONG)
- # undef BOOST_HAS_LONG_LONG
- #endif
- #if defined(__GLIBCXX__) || (defined(__GLIBCPP__) && __GLIBCPP__>=20020514)
- # define BOOST_STD_EXTENSION_NAMESPACE __gnu_cxx
- # define BOOST_HAS_SLIST
- # define BOOST_HAS_HASH
- # define BOOST_SLIST_HEADER <ext/slist>
- # if !defined(__GNUC__) || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
- # define BOOST_HASH_SET_HEADER <ext/hash_set>
- # define BOOST_HASH_MAP_HEADER <ext/hash_map>
- # else
- # define BOOST_HASH_SET_HEADER <backward/hash_set>
- # define BOOST_HASH_MAP_HEADER <backward/hash_map>
- # endif
- #endif
- #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || !defined(__GXX_EXPERIMENTAL_CXX0X__)
- # define BOOST_NO_0X_HDR_ARRAY
- # define BOOST_NO_0X_HDR_RANDOM
- # define BOOST_NO_0X_HDR_REGEX
- # define BOOST_NO_0X_HDR_TUPLE
- # define BOOST_NO_0X_HDR_TYPE_TRAITS
- # define BOOST_NO_STD_UNORDERED
- # define BOOST_NO_0X_HDR_UNORDERED_MAP
- # define BOOST_NO_0X_HDR_UNORDERED_SET
- #endif
- #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__)
- # define BOOST_NO_0X_HDR_CHRONO
- # define BOOST_NO_0X_HDR_CONDITION_VARIABLE
- # define BOOST_NO_0X_HDR_FORWARD_LIST
- # define BOOST_NO_0X_HDR_INITIALIZER_LIST
- # define BOOST_NO_0X_HDR_MUTEX
- # define BOOST_NO_0X_HDR_RATIO
- # define BOOST_NO_0X_HDR_SYSTEM_ERROR
- # define BOOST_NO_0X_HDR_THREAD
- #endif
- # define BOOST_NO_0X_HDR_CODECVT
- # define BOOST_NO_0X_HDR_CONCEPTS
- # define BOOST_NO_0X_HDR_CONTAINER_CONCEPTS
- # define BOOST_NO_0X_HDR_FUTURE
- # define BOOST_NO_0X_HDR_ITERATOR_CONCEPTS
- # define BOOST_NO_0X_HDR_MEMORY_CONCEPTS
|