123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- #if __GNUC__ < 3
- # if __GNUC_MINOR__ == 91
-
- # define BOOST_NO_AUTO_PTR
- # endif
- # if __GNUC_MINOR__ < 95
-
-
-
-
-
- # define BOOST_NO_MEMBER_TEMPLATES
- # if __GNUC_MINOR__ >= 9
- # define BOOST_MSVC6_MEMBER_TEMPLATES
- # endif
- # endif
- # if __GNUC_MINOR__ < 96
- # define BOOST_NO_SFINAE
- # endif
- # if __GNUC_MINOR__ <= 97
- # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
- # define BOOST_NO_OPERATORS_IN_NAMESPACE
- # endif
- # define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
- # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
- # define BOOST_NO_IS_ABSTRACT
- #elif __GNUC__ == 3
- # if defined (__PATHSCALE__)
- # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
- # define BOOST_NO_IS_ABSTRACT
- # endif
-
-
-
-
-
- # if ((__GNUC_MINOR__ == 1) || (__GNUC_MINOR__ == 2))
- # define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
- # endif
- # if __GNUC_MINOR__ < 4
- # define BOOST_NO_IS_ABSTRACT
- # endif
- #endif
- #if __GNUC__ < 4
- #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
- #endif
- #ifndef __EXCEPTIONS
- # define BOOST_NO_EXCEPTIONS
- #endif
- #if !defined(__MINGW32__) && !defined(linux) && !defined(__linux) && !defined(__linux__)
- # define BOOST_HAS_THREADS
- #endif
- #define BOOST_HAS_LONG_LONG
- #if __GNUC__ > 3 || ( __GNUC__ == 3 && __GNUC_MINOR__ >= 1 )
- #define BOOST_HAS_NRVO
- #endif
- #if __GNUC__ * 100 + __GNUC_MINOR__ >= 403
- # ifndef __GXX_RTTI
- # define BOOST_NO_TYPEID
- # define BOOST_NO_RTTI
- # endif
- #endif
- #define BOOST_NO_CONSTEXPR
- #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
- #define BOOST_NO_EXTERN_TEMPLATE
- #define BOOST_NO_LAMBDAS
- #define BOOST_NO_NULLPTR
- #define BOOST_NO_RAW_LITERALS
- #define BOOST_NO_SCOPED_ENUMS
- #define BOOST_NO_TEMPLATE_ALIASES
- #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2)) && defined(__GXX_EXPERIMENTAL_CXX0X__)
- # define BOOST_HAS_DECLTYPE
- # define BOOST_HAS_RVALUE_REFS
- # define BOOST_HAS_STATIC_ASSERT
- # define BOOST_HAS_VARIADIC_TMPL
- #else
- # define BOOST_NO_DECLTYPE
- # define BOOST_NO_RVALUE_REFERENCES
- # define BOOST_NO_STATIC_ASSERT
- # ifdef __VARIADIC_TEMPLATES
- # define BOOST_HAS_VARIADIC_TMPL
- # else
- # define BOOST_NO_VARIADIC_TEMPLATES
- # endif
- #endif
- #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__)
- # define BOOST_NO_AUTO_DECLARATIONS
- # define BOOST_NO_AUTO_MULTIDECLARATIONS
- # define BOOST_NO_CHAR16_T
- # define BOOST_NO_CHAR32_T
- # define BOOST_NO_DEFAULTED_FUNCTIONS
- # define BOOST_NO_DELETED_FUNCTIONS
- # define BOOST_NO_INITIALIZER_LISTS
- # define BOOST_NO_SCOPED_ENUMS
- # define BOOST_NO_UNICODE_LITERALS
- #endif
- #ifdef __GXX_CONCEPTS__
- # define BOOST_HAS_CONCEPTS
- # define BOOST_COMPILER "ConceptGCC version " __VERSION__
- #else
- # define BOOST_NO_CONCEPTS
- #endif
- #ifndef BOOST_COMPILER
- # define BOOST_COMPILER "GNU C++ version " __VERSION__
- #endif
- #if (__GNUC__ == 2) && (__GNUC_MINOR__ < 90)
- # error "Compiler not configured - please reconfigure"
- #endif
- #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 3))
- # if defined(BOOST_ASSERT_CONFIG)
- # error "Unknown compiler version - please run the configure tests and report the results"
- # else
- # endif
- #endif
|