From ecd63c58093b0bb82110b2a01e5be21fbf9e59db Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sun, 28 Oct 2001 14:47:49 +0000 Subject: [PATCH] fix condition for broken std::messages [SVN r11460] --- include/boost/config/stdlib/sgi.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/stdlib/sgi.hpp b/include/boost/config/stdlib/sgi.hpp index 89e2c5ea..14abac32 100644 --- a/include/boost/config/stdlib/sgi.hpp +++ b/include/boost/config/stdlib/sgi.hpp @@ -51,7 +51,7 @@ // // SGI's new iostreams have missing "const" in messages<>::open // -#if defined(__sgi) && (_COMPILER_VERSION <= 730) && defined(__SGI_STL_OWN_IOSTREAMS) +#if defined(__sgi) && (_COMPILER_VERSION <= 730) && defined(__STL_USE_NEW_IOSTREAMS) # define BOOST_NO_STD_MESSAGES #endif