$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2008-03-19 14:36:07
John Maddock wrote:
> Vladimir Prus wrote:
>> Anthony Williams wrote:
>>
>>> Darren Garvey <darren.garvey <at> gmail.com> writes:
>>>
>>>> The Jamfile.v2 in libs/thread/doc/ seems to be missing a 'using
>>>> quickbook ;'
>>>
>>> I didn't realise it needed one: it builds fine here.
>>
>> Usually, 'using quickbook ; ' is placed in user-config.jam, not in
>> Jamfile.
>
> Right, there should be a:
>
> import quickbook ;
>
> in the Jamfile though?
Adding
import quickbook ;
will make it sure that Jamfile will be parsed without
errors. But given that doc/Jamfile is only parsed if
you're building docs, you better have 'using quickbook' somewhere.
- Volodya