annotate DEPENDENCIES/generic/include/boost/config/compiler/mpw.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
rev   line source
Chris@16 1 // (C) Copyright John Maddock 2001 - 2002.
Chris@16 2 // (C) Copyright Aleksey Gurtovoy 2002.
Chris@16 3 // Use, modification and distribution are subject to the
Chris@16 4 // Boost Software License, Version 1.0. (See accompanying file
Chris@16 5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6
Chris@16 7 // See http://www.boost.org for most recent version.
Chris@16 8
Chris@16 9 // MPW C++ compilers setup:
Chris@16 10
Chris@16 11 # if defined(__SC__)
Chris@16 12 # define BOOST_COMPILER "MPW SCpp version " BOOST_STRINGIZE(__SC__)
Chris@16 13 # elif defined(__MRC__)
Chris@16 14 # define BOOST_COMPILER "MPW MrCpp version " BOOST_STRINGIZE(__MRC__)
Chris@16 15 # else
Chris@16 16 # error "Using MPW compiler configuration by mistake. Please update."
Chris@16 17 # endif
Chris@16 18
Chris@16 19 //
Chris@16 20 // MPW 8.90:
Chris@16 21 //
Chris@16 22 #if (MPW_CPLUS <= 0x890) || !defined(BOOST_STRICT_CONFIG)
Chris@16 23 # define BOOST_NO_CV_SPECIALIZATIONS
Chris@16 24 # define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
Chris@16 25 # define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
Chris@16 26 # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
Chris@16 27 # define BOOST_NO_INTRINSIC_WCHAR_T
Chris@16 28 # define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Chris@16 29 # define BOOST_NO_USING_TEMPLATE
Chris@16 30
Chris@16 31 # define BOOST_NO_CWCHAR
Chris@16 32 # define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
Chris@16 33
Chris@16 34 # define BOOST_NO_STD_ALLOCATOR /* actually a bug with const reference overloading */
Chris@16 35
Chris@16 36 #endif
Chris@16 37
Chris@16 38 //
Chris@16 39 // C++0x features
Chris@16 40 //
Chris@16 41 // See boost\config\suffix.hpp for BOOST_NO_LONG_LONG
Chris@16 42 //
Chris@16 43 #define BOOST_NO_CXX11_AUTO_DECLARATIONS
Chris@16 44 #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
Chris@16 45 #define BOOST_NO_CXX11_CHAR16_T
Chris@16 46 #define BOOST_NO_CXX11_CHAR32_T
Chris@16 47 #define BOOST_NO_CXX11_CONSTEXPR
Chris@16 48 #define BOOST_NO_CXX11_DECLTYPE
Chris@16 49 #define BOOST_NO_CXX11_DECLTYPE_N3276
Chris@16 50 #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
Chris@16 51 #define BOOST_NO_CXX11_DELETED_FUNCTIONS
Chris@16 52 #define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
Chris@16 53 #define BOOST_NO_CXX11_EXTERN_TEMPLATE
Chris@16 54 #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
Chris@16 55 #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
Chris@16 56 #define BOOST_NO_CXX11_LAMBDAS
Chris@16 57 #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
Chris@16 58 #define BOOST_NO_CXX11_NOEXCEPT
Chris@16 59 #define BOOST_NO_CXX11_NULLPTR
Chris@16 60 #define BOOST_NO_CXX11_RANGE_BASED_FOR
Chris@16 61 #define BOOST_NO_CXX11_RAW_LITERALS
Chris@16 62 #define BOOST_NO_CXX11_RVALUE_REFERENCES
Chris@16 63 #define BOOST_NO_CXX11_SCOPED_ENUMS
Chris@16 64 #define BOOST_NO_SFINAE_EXPR
Chris@16 65 #define BOOST_NO_CXX11_STATIC_ASSERT
Chris@16 66 #define BOOST_NO_CXX11_TEMPLATE_ALIASES
Chris@16 67 #define BOOST_NO_CXX11_UNICODE_LITERALS
Chris@16 68 #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
Chris@16 69 #define BOOST_NO_CXX11_VARIADIC_MACROS
Chris@16 70 #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
Chris@16 71 #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
Chris@16 72 #define BOOST_NO_CXX11_ALIGNAS
Chris@16 73 #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
Chris@16 74 #define BOOST_NO_CXX11_INLINE_NAMESPACES
Chris@16 75
Chris@16 76 //
Chris@16 77 // versions check:
Chris@16 78 // we don't support MPW prior to version 8.9:
Chris@16 79 #if MPW_CPLUS < 0x890
Chris@16 80 # error "Compiler not supported or configured - please reconfigure"
Chris@16 81 #endif
Chris@16 82 //
Chris@16 83 // last known and checked version is 0x890:
Chris@16 84 #if (MPW_CPLUS > 0x890)
Chris@16 85 # if defined(BOOST_ASSERT_CONFIG)
Chris@16 86 # error "Unknown compiler version - please run the configure tests and report the results"
Chris@16 87 # endif
Chris@16 88 #endif
Chris@16 89
Chris@16 90