From e2dd3ac3e5682a47200f668343f91a617382f3fb Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 12 Jul 2001 17:55:44 +0000 Subject: [PATCH] MSVC tweaks. --- src/Main/Makefile.am | 4 ++-- src/Main/main.cxx | 2 ++ src/Scenery/FGTileLoader.hxx | 2 ++ src/Scenery/tilemgr.hxx | 2 ++ 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Main/Makefile.am b/src/Main/Makefile.am index d07f1e867..1e05ae43d 100644 --- a/src/Main/Makefile.am +++ b/src/Main/Makefile.am @@ -35,9 +35,9 @@ EXTRA_DIST = 3dfx.sh runfgfs.in runfgfs.bat.in bin_PROGRAMS = fgfs -noinst_SCRIPTS = runfgfs.bat +noinst_SCRIPTS = runfgfs.bat runfgfs -bin_SCRIPTS = runfgfs +# bin_SCRIPTS = runfgfs fgfs_SOURCES = \ main.cxx \ diff --git a/src/Main/main.cxx b/src/Main/main.cxx index a840e65bd..0ef9568f1 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -25,6 +25,8 @@ # include #endif +#include + #ifdef SG_MATH_EXCEPTION_CLASH # include #endif diff --git a/src/Scenery/FGTileLoader.hxx b/src/Scenery/FGTileLoader.hxx index 78334b5ea..74d237f34 100644 --- a/src/Scenery/FGTileLoader.hxx +++ b/src/Scenery/FGTileLoader.hxx @@ -32,8 +32,10 @@ # include #else # include + SG_USING_STD( queue ); #endif + // Forward reference. class FGTileEntry; diff --git a/src/Scenery/tilemgr.hxx b/src/Scenery/tilemgr.hxx index fe9c6fd2f..067fb563f 100644 --- a/src/Scenery/tilemgr.hxx +++ b/src/Scenery/tilemgr.hxx @@ -50,6 +50,8 @@ # define FG_MEM_COPY(to,from,n) bcopy(from, to, n) #endif +SG_USING_STD( queue ); + // forward declaration class FGTileEntry;