Don't warn when testing newer compilers on gcc any more.

Fix MWCW 9.5 failures.


[SVN r28845]
This commit is contained in:
John Maddock
2005-05-12 16:28:44 +00:00
parent f2bf80b474
commit 30e64613cd
2 changed files with 8 additions and 2 deletions

View File

@@ -96,7 +96,9 @@
# 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
# warning "Unknown compiler version - please run the configure tests and report the results" // we don't emit warnings here anymore since there are no defect macros defined for
// gcc post 3.4, so any failures are gcc regressions...
//# warning "Unknown compiler version - please run the configure tests and report the results"
# endif # endif
#endif #endif

View File

@@ -37,7 +37,9 @@
# define BOOST_NO_SFINAE # define BOOST_NO_SFINAE
# endif # endif
# if(__MWERKS__ <= 0x3205) // 9.4 // the "|| !defined(BOOST_STRICT_CONFIG)" part should apply to the last
// tested version *only*:
# if(__MWERKS__ <= 0x3206) || !defined(BOOST_STRICT_CONFIG) // 9.5
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
# define BOOST_NO_IS_ABSTRACT # define BOOST_NO_IS_ABSTRACT
# endif # endif
@@ -69,6 +71,8 @@
# define BOOST_COMPILER_VERSION 9.3 # define BOOST_COMPILER_VERSION 9.3
# elif __MWERKS__ == 0x3205 # elif __MWERKS__ == 0x3205
# define BOOST_COMPILER_VERSION 9.4 # define BOOST_COMPILER_VERSION 9.4
# elif __MWERKS__ == 0x3206
# define BOOST_COMPILER_VERSION 9.5
# else # else
# define BOOST_COMPILER_VERSION __MWERKS__ # define BOOST_COMPILER_VERSION __MWERKS__
# endif # endif