From 0acf61da07eef185b881b4b5c2fbaaeb896ea554 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sat, 27 May 2006 13:58:58 +0000 Subject: [PATCH] workaround to restore MIPSpro 7.3.1 Boost.Python build: the old EDG238-based compiler does not support the new boost/type_traits/integral_promotion.hpp [SVN r34110] --- include/boost/type_traits.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/type_traits.hpp b/include/boost/type_traits.hpp index b6cc3c6..afba2ea 100644 --- a/include/boost/type_traits.hpp +++ b/include/boost/type_traits.hpp @@ -71,8 +71,10 @@ #include "boost/type_traits/function_traits.hpp" #include "boost/type_traits/aligned_storage.hpp" #include "boost/type_traits/floating_point_promotion.hpp" +#if !(defined(__sgi) && defined(__EDG_VERSION__) && (__EDG_VERSION__ == 238)) #include "boost/type_traits/integral_promotion.hpp" #include "boost/type_traits/promote.hpp" +#endif #include "boost/type_traits/ice.hpp"