$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2008-01-21 04:17:49
David R. Palmer wrote:
>> Okay, I downloaded the auto_link.hpp and placed it in the C:\Program
>> Files\boost\boost_1_34_1\boost\config directory.
>>
>> It is still looking for the older version of the libraries. The
>> libraries have been built and exist, so that isn't the problem.
>>
>> Any help would be appreciated. Thanks.
Strange, things to double check:
That auto_link.hpp has the VC9 section:
#elif defined(BOOST_MSVC) && (BOOST_MSVC >= 1500)
// vc90:
# define BOOST_LIB_TOOLSET "vc90"
and that the header is actually being included rather than some other
version (put a #error at the top of the file temporarily).
HTH, John.