mirror of
https://github.com/boostorg/config.git
synced 2025-07-31 21:04:28 +02:00
Merge both config and integer changes from Trunk: these are interlinked.
[SVN r58381]
This commit is contained in:
@@ -66,7 +66,6 @@
|
|||||||
|
|
||||||
// Borland C++ Builder 6 and below:
|
// Borland C++ Builder 6 and below:
|
||||||
#if (__BORLANDC__ <= 0x564)
|
#if (__BORLANDC__ <= 0x564)
|
||||||
# define BOOST_NO_INTEGRAL_INT64_T
|
|
||||||
|
|
||||||
# ifdef NDEBUG
|
# ifdef NDEBUG
|
||||||
// fix broken <cstring> so that Boost.test works:
|
// fix broken <cstring> so that Boost.test works:
|
||||||
@@ -121,6 +120,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Borland C++ Builder 2008 and below:
|
// Borland C++ Builder 2008 and below:
|
||||||
|
# define BOOST_NO_INTEGRAL_INT64_T
|
||||||
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
|
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
|
||||||
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
||||||
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
||||||
|
@@ -19,8 +19,8 @@
|
|||||||
#endif
|
#endif
|
||||||
//
|
//
|
||||||
// versions check:
|
// versions check:
|
||||||
// last known and checked version is 0x610
|
// last known and checked version is 0x620
|
||||||
#if (__CODEGEARC__ > 0x613)
|
#if (__CODEGEARC__ > 0x620)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
@@ -30,20 +30,24 @@
|
|||||||
|
|
||||||
// CodeGear C++ Builder 2009
|
// CodeGear C++ Builder 2009
|
||||||
#if (__CODEGEARC__ <= 0x613)
|
#if (__CODEGEARC__ <= 0x613)
|
||||||
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
|
# define BOOST_NO_INTEGRAL_INT64_T
|
||||||
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
||||||
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
|
||||||
# define BOOST_NO_PRIVATE_IN_AGGREGATE
|
# define BOOST_NO_PRIVATE_IN_AGGREGATE
|
||||||
# define BOOST_NO_TWO_PHASE_NAME_LOOKUP
|
|
||||||
# define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
|
# define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
|
||||||
# define BOOST_NO_USING_TEMPLATE
|
|
||||||
// we shouldn't really need this - but too many things choke
|
// we shouldn't really need this - but too many things choke
|
||||||
// without it, this needs more investigation:
|
// without it, this needs more investigation:
|
||||||
# define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
|
# define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
|
||||||
# define BOOST_NO_TYPENAME_WITH_CTOR // Cannot use typename keyword when making temporaries of a dependant type
|
|
||||||
# define BOOST_NO_NESTED_FRIENDSHIP // TC1 gives nested classes access rights as any other member
|
|
||||||
# define BOOST_SP_NO_SP_CONVERTIBLE
|
# define BOOST_SP_NO_SP_CONVERTIBLE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// CodeGear C++ Builder 2010
|
||||||
|
#if (__CODEGEARC__ <= 0x620)
|
||||||
|
# define BOOST_NO_TYPENAME_WITH_CTOR // Cannot use typename keyword when making temporaries of a dependant type
|
||||||
|
# define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
|
||||||
|
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
||||||
|
# define BOOST_NO_NESTED_FRIENDSHIP // TC1 gives nested classes access rights as any other member
|
||||||
|
# define BOOST_NO_USING_TEMPLATE
|
||||||
|
# define BOOST_NO_TWO_PHASE_NAME_LOOKUP
|
||||||
// Temporary hack, until specific MPL preprocessed headers are generated
|
// Temporary hack, until specific MPL preprocessed headers are generated
|
||||||
# define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
|
# define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
|
||||||
|
|
||||||
@@ -59,7 +63,6 @@
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// C++0x macros:
|
// C++0x macros:
|
||||||
//
|
//
|
||||||
|
@@ -125,7 +125,7 @@
|
|||||||
#if (_MSC_VER >= 1200)
|
#if (_MSC_VER >= 1200)
|
||||||
# define BOOST_HAS_MS_INT64
|
# define BOOST_HAS_MS_INT64
|
||||||
#endif
|
#endif
|
||||||
#if (_MSC_VER >= 1310) && defined(_MSC_EXTENSIONS)
|
#if (_MSC_VER >= 1310) && (defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1500))
|
||||||
# define BOOST_HAS_LONG_LONG
|
# define BOOST_HAS_LONG_LONG
|
||||||
#else
|
#else
|
||||||
# define BOOST_NO_LONG_LONG
|
# define BOOST_NO_LONG_LONG
|
||||||
|
Reference in New Issue
Block a user