$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2005-06-08 07:44:51
>I have Fedora (pre-FC4). There are packages for icu: libicu, libicu-devel,
> libicu-doc which I installed.
>
> I can't seem to convince bjam to use them. What do I need to do?
>
> Headers are in /usr/include/unicode (e.g., /usr/include/utypes.h). Libs
> are
> rpm -ql libicu
> /usr/lib64/libicudata.so.32
The Jamfiles getting confused because the libs are under a different path to
the headers, try:
export ICU_PATH=/usr
export ICU_LINK="-licuuc -licui18n"
bjam stage # or whatever
Hopefully that should work,
John.