$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Alexey Pakhunov (alexeypa_at_[hidden])
Date: 2006-01-31 06:34:35
On 1/31/06, Foster Brereton <fosterb.boost_at_[hidden]> wrote:
> flags msvc.compile CFLAGS $(condition)/<optimization>space :
> /Ogisy /O1 /Gs ;
[skip]
> + flags msvc.compile.rc DEFINES : "ADOBE_VER=8 " ;
You forgot to add $(condition). It should be:
flags msvc.compile.rc DEFINES $(condition) : "ADOBE_VER=8 " ;
BTW you may use the subfeature <toolset-msvc:version>xxx the get the
same result without patching msvc.jam.
-- Best regards, Alexey Pakhunov.