]> git.mxchange.org Git - flightgear.git/commitdiff
Minor tweaks.
authorcurt <curt>
Mon, 16 Feb 1998 16:17:33 +0000 (16:17 +0000)
committercurt <curt>
Mon, 16 Feb 1998 16:17:33 +0000 (16:17 +0000)
Main/GLUTmain.c
Simulator/Thanks
Simulator/runfg

index b114e77ee875753841c140381e95f49dbf77f072..f752658f845abe712b5f20ea877eeb3c3afc1f40 100644 (file)
 #include <XGL/xgl.h>
 #include <stdio.h>
 
-#include <getopt.h>
+#ifdef __sparc__
+#   include <stdlib.h>
+#else
+#   include <getopt.h>
+#endif
+
 #include <Main/GLUTkey.h>
 #include <Main/fg_init.h>
 #include <Main/fg_debug.h>
@@ -788,10 +793,13 @@ extern "C" {
 #endif
 
 /* $Log$
-/* Revision 1.62  1998/02/16 13:39:42  curt
-/* Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
-/* tiles to occasionally be missing.
+/* Revision 1.63  1998/02/16 16:17:39  curt
+/* Minor tweaks.
 /*
+ * Revision 1.62  1998/02/16 13:39:42  curt
+ * Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
+ * tiles to occasionally be missing.
+ *
  * Revision 1.61  1998/02/12 21:59:46  curt
  * Incorporated code changes contributed by Charlie Hotchkiss
  * <chotchkiss@namg.us.anritsu.com>
index 9c60fc69312be6a9172c8ae5014ac2883f448ca0..070d4ae9e08e7c49c920ec24988f47332783f99d 100644 (file)
@@ -42,7 +42,7 @@ Michael I. Gold <gold@puck.asd.sgi.com> -- Patiently answered my endless
 
 
 Charlie Hotchkiss <chotchkiss@namg.us.anritsu.com> -- Worked on improving
-  and enhancing the HUD code.  Lots of code style tips ...
+  and enhancing the HUD code.  Lots of code style tips and code tweaks ...
 
 
 Bruce Jackson <e.b.jackson@larc.nasa.gov> 
index 535824febefa382a0e1585b3de3f1911f8c597dc..67fa51e923007c5cddaf20233eae37eea4f31eab 100755 (executable)
@@ -53,12 +53,15 @@ if ( $ENV{FG_ROOT} eq "" ) {
 }
 
 # run Flight Gear
-print "Running $path\n";
-exec($path);
+print "Running $path @ARGV\n";
+exec("$path @ARGV");
 
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.3  1998/02/16 16:17:34  curt
+# Minor tweaks.
+#
 # Revision 1.2  1998/01/27 00:47:43  curt
 # Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
 # system and commandline/config file processing code.