
22 Jan
2008
22 Jan
'08
9:24 a.m.
David R. Palmer wrote:
#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1310)
// vc71: # define BOOST_LIB_TOOLSET "vc71"
This line:
#elif defined(BOOST_MSVC) && (BOOST_MSVC >= 1400)
Is wrong, it should say: #elif defined(BOOST_MSVC) && (BOOST_MSVC == 1400) Which confuses me, because it's never read the way you have it according to SVN history at http://svn.boost.org/trac/boost/browser/trunk/boost/config/auto_link.hpp Still confused, John.