From: curt Date: Wed, 7 Apr 1999 20:58:02 +0000 (+0000) Subject: Fixes for compiling with native Irix compilers. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b07612ce2fb3696b12c47f81f193aa5f8123bf56;p=flightgear.git Fixes for compiling with native Irix compilers. --- diff --git a/Lib/Bucket/newbucket.hxx b/Lib/Bucket/newbucket.hxx index a616677e3..101ef7ae3 100644 --- a/Lib/Bucket/newbucket.hxx +++ b/Lib/Bucket/newbucket.hxx @@ -39,7 +39,10 @@ #endif FG_USING_STD(string); + +#if ! defined( FG_HAVE_NATIVE_SGI_COMPILERS ) FG_USING_STD(ostream); +#endif #include diff --git a/Simulator/Airports/simple.hxx b/Simulator/Airports/simple.hxx index d125fdb13..99abb4200 100644 --- a/Simulator/Airports/simple.hxx +++ b/Simulator/Airports/simple.hxx @@ -36,6 +36,8 @@ #include #ifdef FG_HAVE_STD_INCLUDES # include +#elif defined( FG_HAVE_NATIVE_SGI_COMPILERS ) +# include #else # include #endif @@ -45,7 +47,10 @@ FG_USING_STD(string); FG_USING_STD(set); + +#if ! defined( FG_HAVE_NATIVE_SGI_COMPILERS ) FG_USING_STD(istream); +#endif class fgAIRPORT { diff --git a/Simulator/FDM/flight.hxx b/Simulator/FDM/flight.hxx index 99a2e9b81..5afc060c4 100644 --- a/Simulator/FDM/flight.hxx +++ b/Simulator/FDM/flight.hxx @@ -81,6 +81,8 @@ */ +#include + #include