$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2003-11-29 06:29:04
> Setting STLPORT_VERSION as per the docs seems to have no effect - it still
> looks for stlport-4.5.3 - and looking in the msvc-stlport-tools.jam
> STLPORT_VERSION seems to be set unconditionally?
I've spent quite a lot of time with this toolset now, and it simply does not
work as per the docs - and I can't see for the life of me why not:
Setting STLPORT_VERSION as per the docs has no effect, fixing the obvious
bug in the toolset by changing:
STLPORT_VERSION = 4.5.3 ;
to
STLPORT_VERSION ?= 4.5.3 ;
still doesn't fix the problem. Adding some ECHO statements to the toolset
shows quite clearly that STLPORT_VERSION starts off with the correct value
but gets undefined and some point during the toolset execution - so each
subsequent time the toolset is invoked STLPORT_VERSION gets reset to the
default value. At this point I'm stumped - HELP!
Thanks,
John.