From: curt Date: Mon, 4 Jun 2001 21:47:48 +0000 (+0000) Subject: Irix/MIPS compiler fixes. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=095fb5c946d9129d0f2950559c3a66fc3c9c488a;p=flightgear.git Irix/MIPS compiler fixes. --- diff --git a/src/Input/fgjs.cxx b/src/Input/fgjs.cxx index 15fc46ce0..a17d71a2b 100644 --- a/src/Input/fgjs.cxx +++ b/src/Input/fgjs.cxx @@ -18,13 +18,19 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#include + +#include + +#include STL_IOSTREAM +#include STL_FSTREAM +#include STL_STRING #include #include -#include -#include -#include -#include + +SG_USING_STD(string); + string axes_humannames[8] = { "elevator", "ailerons", "rudder", "throttle", "mixture","propller pitch", "lateral view", diff --git a/src/Input/input.cxx b/src/Input/input.cxx index 039a52e53..b126b2feb 100644 --- a/src/Input/input.cxx +++ b/src/Input/input.cxx @@ -67,7 +67,9 @@ #include "input.hxx" +#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS) SG_USING_STD(ifstream); +#endif SG_USING_STD(string); SG_USING_STD(vector);