diff --git a/include/boost/config.hpp b/include/boost/config.hpp index c268a948..b534123d 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -218,6 +218,16 @@ # if __GNUC__ == 2 && __GNUC_MINOR__ <= 8 # define BOOST_NO_MEMBER_TEMPLATES # endif +# if (__GNUC__ == 2 && __GNUC_MINOR__ > 95) || __GNUC__ > 2 + // upcoming gcc 3.0 +# include +# if defined(__GLIBCPP__) + // The new GNU C++ library has slist, hash_map, hash_set headers + // in , but client code assumes they're in <*> --- Jens M. +# define BOOST_NO_SLIST +# define BOOST_NO_HASH +# endif +# endif // Kai C++ ------------------------------------------------------------------//