MSVC tweaks.
This commit is contained in:
parent
1cdcaef13d
commit
e2dd3ac3e5
4 changed files with 8 additions and 2 deletions
|
@ -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 \
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue