$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Tim Taylor (tim_at_[hidden])
Date: 2005-08-31 09:25:41
I have just downloaded boost 1.33.0 and am doing a bulk-standard install
on my linux PC as per the instructions, with the command:
bjam "-sTOOLS=gcc" install
Nearly everything worked fine, but the iostreams library failed to
compile, with the error in boost_1_33_0/libs/iostreams/src/bzip2.cpp:
could not find include file "bzlib.h"
On further investigation, this file comes from the package
libbzip2_1-devel, which also needs to be installed.
An extra thought: bzip2.cpp includes this file as
#include "bzlib.h"
but it should really be
#include <bzlib.h>
as this is from a different library.
Tim