]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/genrunways.cxx
Default to glider again when model is not present.
[flightgear.git] / src / Airports / genrunways.cxx
index d81f7474ceb97378078f570fab63dff7327d0294..869e9bb64dbec795fdb2831f152b10eb8bdb6153 100644 (file)
@@ -1,11 +1,24 @@
 // dump out a gdbm version of the simple airport file
 
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
+
+#include <simgear/debug/logstream.hxx>
+
 #include "runways.hxx"
 
+#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
+SG_USING_STD(cout);
+SG_USING_STD(endl);
+#endif
+
 int main( int argc, char **argv ) {
     FGRunwaysUtil runways;
     FGRunway r;
 
+    sglog().setLogLevels( SG_ALL, SG_INFO );
+
     if ( argc == 3 ) {
        runways.load( argv[1] );
        runways.dump_mk4( argv[2] );