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
|
||||
|
||||
noinst_SCRIPTS = runfgfs.bat
|
||||
noinst_SCRIPTS = runfgfs.bat runfgfs
|
||||
|
||||
bin_SCRIPTS = runfgfs
|
||||
# bin_SCRIPTS = runfgfs
|
||||
|
||||
fgfs_SOURCES = \
|
||||
main.cxx \
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
||||
#ifdef SG_MATH_EXCEPTION_CLASH
|
||||
# include <math.h>
|
||||
#endif
|
||||
|
|
|
@ -32,8 +32,10 @@
|
|||
# include <simgear/threads/SGQueue.hxx>
|
||||
#else
|
||||
# include <queue>
|
||||
SG_USING_STD( queue );
|
||||
#endif
|
||||
|
||||
|
||||
// Forward reference.
|
||||
class FGTileEntry;
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@
|
|||
# define FG_MEM_COPY(to,from,n) bcopy(from, to, n)
|
||||
#endif
|
||||
|
||||
SG_USING_STD( queue );
|
||||
|
||||
|
||||
// forward declaration
|
||||
class FGTileEntry;
|
||||
|
|
Loading…
Reference in a new issue