]> git.mxchange.org Git - flightgear.git/commitdiff
Fixes for changes in simgear/math/sg_types.hxx
authorTim Moore <timoore@redhat.com>
Sun, 18 Oct 2009 10:16:23 +0000 (12:16 +0200)
committerTim Moore <timoore@redhat.com>
Sun, 18 Oct 2009 10:16:54 +0000 (12:16 +0200)
src/Input/FGDeviceConfigurationMap.cxx
src/Scripting/nasal-props.cxx

index 1cd4f1c4d3e07f029422aa9cd709c1494a853cc8..413222f041d95116547f91a0f0f8cf8ade0acaed 100644 (file)
@@ -27,6 +27,9 @@
 #endif
 
 #include "FGDeviceConfigurationMap.hxx"
+
+#include <plib/ul.h>
+
 #include <simgear/props/props_io.hxx>
 #include <Main/globals.hxx>
 
index 4ffc4d6016a4536298d2c8fec2ee86848280d354..9f309903a11b7401a2b7992a49926bd53da9ab89 100644 (file)
@@ -3,6 +3,9 @@
 #  include "config.h"
 #endif
 
+#include <cstring>
+
+#include <simgear/math/SGMath.hxx>
 #include <simgear/nasal/nasal.h>
 #include <simgear/props/props.hxx>
 
@@ -10,6 +13,8 @@
 
 #include "NasalSys.hxx"
 
+using namespace std;
+
 // Implementation of a Nasal wrapper for the SGPropertyNode class,
 // using the Nasal "ghost" (er... Garbage collection Handle for
 // OutSide Thingy) facility.