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
noinst_SCRIPTS = runfgfs.bat
noinst_SCRIPTS = runfgfs.bat runfgfs
bin_SCRIPTS = runfgfs
# bin_SCRIPTS = runfgfs
fgfs_SOURCES = \
main.cxx \

View file

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

View file

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

View file

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