Minor tweaks.
This commit is contained in:
parent
e1639ee6c1
commit
9c07889a0c
3 changed files with 18 additions and 7 deletions
|
@ -32,7 +32,12 @@
|
||||||
#include <XGL/xgl.h>
|
#include <XGL/xgl.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <getopt.h>
|
#ifdef __sparc__
|
||||||
|
# include <stdlib.h>
|
||||||
|
#else
|
||||||
|
# include <getopt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <Main/GLUTkey.h>
|
#include <Main/GLUTkey.h>
|
||||||
#include <Main/fg_init.h>
|
#include <Main/fg_init.h>
|
||||||
#include <Main/fg_debug.h>
|
#include <Main/fg_debug.h>
|
||||||
|
@ -788,10 +793,13 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* $Log$
|
/* $Log$
|
||||||
/* Revision 1.62 1998/02/16 13:39:42 curt
|
/* Revision 1.63 1998/02/16 16:17:39 curt
|
||||||
/* Miscellaneous weekend tweaks. Fixed? a cache problem that caused whole
|
/* Minor tweaks.
|
||||||
/* tiles to occasionally be missing.
|
|
||||||
/*
|
/*
|
||||||
|
* 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
|
* Revision 1.61 1998/02/12 21:59:46 curt
|
||||||
* Incorporated code changes contributed by Charlie Hotchkiss
|
* Incorporated code changes contributed by Charlie Hotchkiss
|
||||||
* <chotchkiss@namg.us.anritsu.com>
|
* <chotchkiss@namg.us.anritsu.com>
|
||||||
|
|
|
@ -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
|
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>
|
Bruce Jackson <e.b.jackson@larc.nasa.gov>
|
||||||
|
|
|
@ -53,12 +53,15 @@ if ( $ENV{FG_ROOT} eq "" ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
# run Flight Gear
|
# run Flight Gear
|
||||||
print "Running $path\n";
|
print "Running $path @ARGV\n";
|
||||||
exec($path);
|
exec("$path @ARGV");
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.3 1998/02/16 16:17:34 curt
|
||||||
|
# Minor tweaks.
|
||||||
|
#
|
||||||
# Revision 1.2 1998/01/27 00:47:43 curt
|
# Revision 1.2 1998/01/27 00:47:43 curt
|
||||||
# Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
|
# Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
|
||||||
# system and commandline/config file processing code.
|
# system and commandline/config file processing code.
|
||||||
|
|
Loading…
Add table
Reference in a new issue