From 7cd76975915689bd20dfc2424da9becdaea662a1 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 30 Sep 2001 10:26:50 +0000 Subject: [PATCH] tentative tweeks for roguewave lib on HP aCC (needs BOOST_NO_STD_ALLOCATOR) [SVN r11307] --- include/boost/config/stdlib/roguewave.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/boost/config/stdlib/roguewave.hpp b/include/boost/config/stdlib/roguewave.hpp index 8eb38408..f1e366f8 100644 --- a/include/boost/config/stdlib/roguewave.hpp +++ b/include/boost/config/stdlib/roguewave.hpp @@ -72,9 +72,11 @@ #endif // -// RW defines _RWSTD_ALLOCATOR if the allocator is conformant and in use: +// RW defines _RWSTD_ALLOCATOR if the allocator is conformant and in use +// (the or _HPACC_ part is a hack - the library seems to define _RWSTD_ALLOCATOR +// on HP aCC systems even though the allocator is in fact broken): // -#if !defined(_RWSTD_ALLOCATOR) +#if !defined(_RWSTD_ALLOCATOR) || defined(_HPACC_) || defined(__HP_aCC) # define BOOST_NO_STD_ALLOCATOR #endif