Updated setup based on Metrowerks feedback

[SVN r21567]
This commit is contained in:
John Maddock
2004-01-09 13:03:45 +00:00
parent 12ae2bd907
commit 071d79d058
2 changed files with 10 additions and 2 deletions

View File

@ -48,6 +48,7 @@
# define BOOST_NO_EXCEPTIONS
#endif
#if (__INTEL__ && _WIN32) || (__POWERPC__ && macintosh)
# if __MWERKS__ == 0x3000
# define BOOST_COMPILER_VERSION 8.0
# elif __MWERKS__ == 0x3001
@ -56,11 +57,18 @@
# define BOOST_COMPILER_VERSION 8.2
# elif __MWERKS__ == 0x3003
# define BOOST_COMPILER_VERSION 8.3
# elif __MWERKS__ == 0x3200
# define BOOST_COMPILER_VERSION 9.0
# elif __MWERKS__ == 0x3201
# define BOOST_COMPILER_VERSION 9.1
# elif __MWERKS__ == 0x3202
# define BOOST_COMPILER_VERSION 9.2
# else
# define BOOST_COMPILER_VERSION __MWERKS__
# endif
# endif
#else
# define BOOST_COMPILER_VERSION __MWERKS__
#endif
#define BOOST_COMPILER "Metrowerks CodeWarrior C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)

View File

@ -35,7 +35,7 @@
# include <boost/config/posix_features.hpp>
#endif
#if _MWMT
#if defined(_MWMT) || defined(_MSL_THREADSAFE)
# define BOOST_HAS_THREADS
#endif