123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- #if defined(__EDG__)
- #include "boost/config/compiler/common_edg.hpp"
- #endif
- #if (__HP_aCC <= 33100)
- # define BOOST_NO_INTEGRAL_INT64_T
- # define BOOST_NO_OPERATORS_IN_NAMESPACE
- # if !defined(_NAMESPACE_STD)
- # define BOOST_NO_STD_LOCALE
- # define BOOST_NO_STRINGSTREAM
- # endif
- #endif
- #if (__HP_aCC <= 33300)
- # define BOOST_NO_MEMBER_TEMPLATES
- # define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
- # define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
- #endif
- #if (__HP_aCC <= 38000)
- # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
- #endif
- #if (__HP_aCC > 50000) && (__HP_aCC < 60000)
- # define BOOST_NO_UNREACHABLE_RETURN_DETECTION
- # define BOOST_NO_TEMPLATE_TEMPLATES
- # define BOOST_NO_SWPRINTF
- # define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
- # define BOOST_NO_IS_ABSTRACT
- # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
- #endif
- #if (__HP_aCC >= 33900)
- # define BOOST_HAS_LONG_LONG
- # define BOOST_HAS_PARTIAL_STD_ALLOCATOR
- #endif
- #if (__HP_aCC >= 50000 ) && (__HP_aCC <= 53800 ) || (__HP_aCC < 31300 )
- # define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
- #endif
- #if (__HP_aCC >= 60000) || ((__HP_aCC > 38000) && defined(__hpxstd98))
- # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
- #endif
- #define BOOST_COMPILER "HP aCC version " BOOST_STRINGIZE(__HP_aCC)
- #if __HP_aCC < 33000
- # error "Compiler not supported or configured - please reconfigure"
- #endif
- #if __HP_aCC > 30000 && __HP_aCC < 50000
- # if __HP_aCC < 38000
-
- # error "Compiler version not supported - version A.03.80 or higher is required"
- # elif !defined(__hpxstd98)
-
- # error "Compiler option '+hpxstd98' is required for proper support"
- # endif
- #endif
- #if !defined(__EDG__)
- #define BOOST_NO_AUTO_DECLARATIONS
- #define BOOST_NO_AUTO_MULTIDECLARATIONS
- #define BOOST_NO_CHAR16_T
- #define BOOST_NO_CHAR32_T
- #define BOOST_NO_CONCEPTS
- #define BOOST_NO_CONSTEXPR
- #define BOOST_NO_DECLTYPE
- #define BOOST_NO_DEFAULTED_FUNCTIONS
- #define BOOST_NO_DELETED_FUNCTIONS
- #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
- #define BOOST_NO_EXTERN_TEMPLATE
- #define BOOST_NO_INITIALIZER_LISTS
- #define BOOST_NO_LAMBDAS
- #define BOOST_NO_NULLPTR
- #define BOOST_NO_RAW_LITERALS
- #define BOOST_NO_RVALUE_REFERENCES
- #define BOOST_NO_SCOPED_ENUMS
- #define BOOST_NO_STATIC_ASSERT
- #define BOOST_NO_TEMPLATE_ALIASES
- #define BOOST_NO_UNICODE_LITERALS
- #define BOOST_NO_VARIADIC_TEMPLATES
- #endif
- #if ((__HP_aCC > 61300) || ((__HP_aCC > 38000) && defined(__hpxstd98)))
- # if defined(BOOST_ASSERT_CONFIG)
- # error "Unknown compiler version - please run the configure tests and report the results"
- # endif
- #endif
|