From 7d39aa3777a0028ff7e27805156448e9ab0398cf Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 18 Apr 1998 04:13:51 +0000 Subject: [PATCH] Moved fg_debug.c to it's own library. --- Aircraft/Makefile.am | 2 +- Aircraft/Makefile.in | 2 +- Aircraft/aircraft.c | 11 ++++++---- Astro/moon.c | 9 +++++--- Astro/orbits.c | 9 +++++--- Astro/planets.c | 11 ++++++---- Astro/stars.c | 11 ++++++---- Astro/sun.c | 9 +++++--- Autopilot/Makefile.am | 2 +- Autopilot/Makefile.in | 2 +- Autopilot/autopilot.c | 51 ++++++++++++++----------------------------- Cockpit/Makefile.am | 2 +- Cockpit/Makefile.in | 2 +- Cockpit/cockpit.c | 13 ++++++----- Cockpit/hud.c | 13 ++++++----- FDM/Makefile.am | 2 +- FDM/Makefile.in | 2 +- FDM/flight.c | 12 ++++++---- Joystick/Makefile.am | 2 +- Joystick/Makefile.in | 2 +- Joystick/joystick.c | 11 ++++++---- Scenery/scenery.c | 9 +++++--- Scenery/tilecache.c | 9 +++++--- Scenery/tilemgr.c | 9 +++++--- Simulator/Makefile.am | 1 - Simulator/Makefile.in | 1 - Time/Makefile.am | 2 +- Time/Makefile.in | 2 +- Time/event.c | 19 +++++++++------- Time/fg_time.c | 24 ++++++++++---------- Weather/Makefile.am | 2 +- Weather/Makefile.in | 2 +- 32 files changed, 142 insertions(+), 118 deletions(-) diff --git a/Aircraft/Makefile.am b/Aircraft/Makefile.am index 39f53eb02..8da66cc30 100644 --- a/Aircraft/Makefile.am +++ b/Aircraft/Makefile.am @@ -3,4 +3,4 @@ libdir = ${exec_prefix}/lib lib_LTLIBRARIES = libAircraft.la libAircraft_la_SOURCES = aircraft.c aircraft.h -INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator +INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator diff --git a/Aircraft/Makefile.in b/Aircraft/Makefile.in index 9e17dcef7..f2cc2fd2d 100644 --- a/Aircraft/Makefile.in +++ b/Aircraft/Makefile.in @@ -311,7 +311,7 @@ installdirs mostlyclean-generic distclean-generic clean-generic \ maintainer-clean-generic clean mostlyclean distclean maintainer-clean -INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator +INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/Aircraft/aircraft.c b/Aircraft/aircraft.c index edd8cd332..97bf38a33 100644 --- a/Aircraft/aircraft.c +++ b/Aircraft/aircraft.c @@ -27,8 +27,8 @@ #include #include +#include #include -#include
/* This is a record containing all the info for the aircraft currently being operated */ @@ -64,10 +64,13 @@ void fgAircraftOutputCurrent(fgAIRCRAFT *a) { /* $Log$ -/* Revision 1.17 1998/02/12 21:59:31 curt -/* Incorporated code changes contributed by Charlie Hotchkiss -/* +/* Revision 1.18 1998/04/18 04:13:56 curt +/* Moved fg_debug.c to it's own library. /* + * Revision 1.17 1998/02/12 21:59:31 curt + * Incorporated code changes contributed by Charlie Hotchkiss + * + * * Revision 1.16 1998/02/07 15:29:31 curt * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss * diff --git a/Astro/moon.c b/Astro/moon.c index 77be2f4ca..f5480dd68 100644 --- a/Astro/moon.c +++ b/Astro/moon.c @@ -35,11 +35,11 @@ #include #include +#include #include #include #include
#include