From 3fdeea7f6533226df79a3d435df9f13996e6f474 Mon Sep 17 00:00:00 2001 From: ehofman Date: Fri, 20 Feb 2004 16:07:51 +0000 Subject: [PATCH] An ugly hack to get MipsPro 7.4.1 working on IRIX 6 .5.20 (Yuck) --- simgear/threads/SGThread.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simgear/threads/SGThread.cxx b/simgear/threads/SGThread.cxx index 484cce1d..0d6f304c 100644 --- a/simgear/threads/SGThread.cxx +++ b/simgear/threads/SGThread.cxx @@ -3,6 +3,11 @@ #if defined(_MSC_VER) || defined(__MINGW32__) # include #else +# if defined ( sgi ) && !defined( __GNUC__ ) + // This works arounf a bug triggered when using MipsPro 7.4.1 + // and (at least) IRIX 6.5.20 +# include +# endif # include #endif #if _MSC_VER >= 1300 -- 2.39.5