$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2003-11-06 07:25:57
There was a problem with the last release not working with STLPort-4.5.3,
you can either apply the following path, or get the latest cvs code:
Index: cpp_regex_traits.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/regex/src/cpp_regex_traits.cpp,v
retrieving revision 1.30.4.1
diff -r1.30.4.1 cpp_regex_traits.cpp
257c257
< #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
--- > #if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && !defined(BOOST_MSVC) 258a259 > using stlport::isspace; John.