$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2008-01-22 04:24:52
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.