1
0
Fork 0

MSVC tweaks.

This commit is contained in:
curt 2001-07-12 17:55:44 +00:00
parent 1cdcaef13d
commit e2dd3ac3e5
4 changed files with 8 additions and 2 deletions

View file

@ -35,9 +35,9 @@ EXTRA_DIST = 3dfx.sh runfgfs.in runfgfs.bat.in
bin_PROGRAMS = fgfs bin_PROGRAMS = fgfs
noinst_SCRIPTS = runfgfs.bat noinst_SCRIPTS = runfgfs.bat runfgfs
bin_SCRIPTS = runfgfs # bin_SCRIPTS = runfgfs
fgfs_SOURCES = \ fgfs_SOURCES = \
main.cxx \ main.cxx \

View file

@ -25,6 +25,8 @@
# include <config.h> # include <config.h>
#endif #endif
#include <simgear/compiler.h>
#ifdef SG_MATH_EXCEPTION_CLASH #ifdef SG_MATH_EXCEPTION_CLASH
# include <math.h> # include <math.h>
#endif #endif

View file

@ -32,8 +32,10 @@
# include <simgear/threads/SGQueue.hxx> # include <simgear/threads/SGQueue.hxx>
#else #else
# include <queue> # include <queue>
SG_USING_STD( queue );
#endif #endif
// Forward reference. // Forward reference.
class FGTileEntry; class FGTileEntry;

View file

@ -50,6 +50,8 @@
# define FG_MEM_COPY(to,from,n) bcopy(from, to, n) # define FG_MEM_COPY(to,from,n) bcopy(from, to, n)
#endif #endif
SG_USING_STD( queue );
// forward declaration // forward declaration
class FGTileEntry; class FGTileEntry;