id summary reporter owner description type status milestone component version severity resolution keywords cc 1595 [spirit] missing #includes faridz@… Joel de Guzman " The [http://stdcxx.apache.org/ stdcxx] is the another implementation of the STL (initially based on RogueWave STL). The following errors are encountered when running boost regression tests on msvc with stdcxx-4.2.0. {{{ ast_calc_tests.cpp ..\boost/spirit/tree/impl/tree_to_xml.ipp(67) : error C3861: 'strlen': identifier not found ..\libs\spirit\test\ast_calc_tests.cpp(158) : error C3861: 'strtol': identifier not found }}} The proposed patch: {{{ Index: boost/spirit/tree/impl/tree_to_xml.ipp =================================================================== --- boost/spirit/tree/impl/tree_to_xml.ipp (revision 42908) +++ boost/spirit/tree/impl/tree_to_xml.ipp (working copy) @@ -13,6 +13,7 @@ #include #include +#include // for strlen() #include #include Index: libs/spirit/test/ast_calc_tests.cpp =================================================================== --- libs/spirit/test/ast_calc_tests.cpp (revision 42908) +++ libs/spirit/test/ast_calc_tests.cpp (working copy) @@ -13,6 +13,7 @@ #include #include +#include // for strtol() #include #include #include }}} " Bugs closed Boost 1.35.0 spirit Boost Development Trunk Showstopper fixed Hartmut Kaiser