id summary reporter owner description type status milestone component version severity resolution keywords cc 1982 BOOST_HAS_SLIST assumed when using STLport Chris Oldwood John Maddock "The header file contains the following lines which assumes that if you are using STLport then the slist type is available:- // // We always have SGI style hash_set, hash_map, and slist: // #define BOOST_HAS_HASH #define BOOST_HAS_SLIST However, if you have configured STLport to disable extensions (e.g. for portability) with the _STLP_NO_EXTENSIONS config setting in then you receive the following error under VC++ 8.0, when including for example, , ...\STLport-5.1.5\stlport\slist(31) : fatal error C1189: #error : The slist class is an STLport extension. I presume the following is all that is required to fix this:- #if !defined(_STLP_NO_EXTENSIONS) # define BOOST_HAS_HASH # define BOOST_HAS_SLIST #endif " Bugs closed To Be Determined config Boost 1.35.0 Problem fixed