$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Garland (jeff_at_[hidden])
Date: 2002-04-08 20:46:49
Seems like there are a few non-portable LOC in your program:
Such as:
if ( find_file( boost_root_dir + "/status/bin/config_info.test",
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
and
string tools_path( boost_root_dir + "/tools/build/" + compiler_name
^^^^^^^^^^^^^
I thought at one point we talked about a way to do this. Maybe something like:
if ( find_file( boost_root_dir + dir_sep() + "status" + dir_sep() + "config_info.test",
So on Windows dir_sep() would be "\" and on Unix it would be "/". Or is something in the core going
to convert "/" to the right thing?
Jeff