]> git.mxchange.org Git - flightgear.git/commitdiff
Added a "Tests/" subdirectory.
authorcurt <curt>
Sat, 25 Apr 1998 14:59:29 +0000 (14:59 +0000)
committercurt <curt>
Sat, 25 Apr 1998 14:59:29 +0000 (14:59 +0000)
Makefile.am
Makefile.in
NEWS
configure
configure.in

index 130930401e8442b0ca9f47c075cc65bd10a360cc..f81117870de8d47c06b2652bf3a33f7861579ddb 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = Include Lib Simulator Tools
+SUBDIRS = Include Lib Simulator Tools Tests
 
 EXTRA_DIST = Makefile.extra README.Win32 README.autoconf README.running Thanks
 
index a5a6133e8966c4cf22f8d5491d1500b8c663e2b4..96ee38f043db14381b0cc5a15ff744f24815bcdf 100644 (file)
@@ -71,7 +71,7 @@ PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@
 VERSION = @VERSION@
 
-SUBDIRS = Include Lib Simulator Tools
+SUBDIRS = Include Lib Simulator Tools Tests
 
 EXTRA_DIST = Makefile.extra README.Win32 README.autoconf README.running Thanks
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
diff --git a/NEWS b/NEWS
index 6d9d0aa57b7fadf8bd37edfc088cc018fa93f607..124832ae39d42960aa8ff0bc29cd5cc298365e67 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,10 @@
+New in 0.44:
+* command line option to set starting position by airport ID
+
 New in 0.43:
+* material properties bug fixed when rendering terrain.
+* bug in sky color generation fixed.
+* bug in fog color generation fixed.
 * zlib on the fly decompression/compression support.
 * more code reorganization and clean ups.
 * a fixed up 30 arcsec DEM file preprocessor.  World wide DEM's are 
index fd69903b77b22911a67d92a9129e19e98bb44d07..7c2e07c31964b6da2068c9ddf0ffeb62ffe85bab 100755 (executable)
--- a/configure
+++ b/configure
@@ -703,7 +703,7 @@ fi
 
 PACKAGE=FlightGear
 
-VERSION=0.43
+VERSION=0.44
 
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
   { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
@@ -4053,6 +4053,7 @@ trap 'rm -fr `echo "\
        Tools/Stripe_u/Makefile \
        Tools/Tri2obj/Makefile \
        Tools/Triangle/Makefile \
+       Tests/Makefile \
         Include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
@@ -4190,6 +4191,7 @@ CONFIG_FILES=\${CONFIG_FILES-"\
        Tools/Stripe_u/Makefile \
        Tools/Tri2obj/Makefile \
        Tools/Triangle/Makefile \
+       Tests/Makefile \
        "}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
index a1e41dfafb1a353b51f9d63326a37b6868012069..11253e345381cab0bb3789e29848ce2aa6dee72f 100644 (file)
@@ -5,7 +5,7 @@ dnl
 AC_INIT(Simulator/Aircraft/aircraft.c)
 
 dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(FlightGear, 0.43)
+AM_INIT_AUTOMAKE(FlightGear, 0.44)
 
 dnl Checks for programs.
 
@@ -164,4 +164,5 @@ AC_OUTPUT( \
        Tools/Stripe_u/Makefile \
        Tools/Tri2obj/Makefile \
        Tools/Triangle/Makefile \
+       Tests/Makefile \
        )