$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Synge Todo (wistaria_at_[hidden])
Date: 2002-04-24 11:52:06
From: "John Maddock" <john_maddock_at_[hidden]>
> Thanks, I've patched the cvs - note that I had to alter your script slightly
> in order to get everything working - in particular I had to alter your use
> of :
>
> + if test -f "$d/boost/boost/config.hpp"; then
>
> to
>
> + if test -f "$boost_base/boost/boost/config.hpp"; then
>
> in several places. You may want to recheck the new cvs version of the
> script.
Thank you. BTW, I have realized that the regular expression on line
93 in configure.in:
boost_base=`expr "x$0" : 'x\(.*\)/[^/]*' \| '.'`
should be
boost_base=`expr "x$0" : 'x\(.*\)/@<:@/@:>@*' \| '.'`
Presumably,
boost_base=`(dirname "$0") 2>/dev/null ||
$as_expr "x$0" : 'x\(.*\)/@<:@/@:>@*' \| '.' 2>/dev/null ||
echo '.'`
would be better. I think now the succeeding test (lines 103--113)
becomes helpless and we can remove it.
Synge Todo
wistaria_at_[hidden]