]> git.mxchange.org Git - flightgear.git/commitdiff
0.52 ...
authorcurt <curt>
Wed, 22 Jul 1998 21:37:19 +0000 (21:37 +0000)
committercurt <curt>
Wed, 22 Jul 1998 21:37:19 +0000 (21:37 +0000)
NEWS
configure.in

diff --git a/NEWS b/NEWS
index 3998207d93cd014582e8408cc8d66ab143dbca97..24279a101762a1623c6b297a18f393d40dd6db08 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,15 @@
+New in 0.52
+* Fog color tries to track the sky color at the center of view in sunrise
+  and sunset situations.
+
 New in 0.51
 * Translucent menus
 * Various HUD intensities so you can find something that is readable for the
   current conditions and lighting.
+* Tie visibility to far clip plane & view frustum culling so reducting
+  visibility can increase frame rates by increasing what is culled.
+* Fixed stupid bug with misplaced initial position.
+* Hopefully fixed a bug when parsing system.fgfsrc on windoze.
 
 New in 0.50
 * HUD updates from Charlie Hotchkiss (ladder number rotate w/ ladder, control
index e782461d610429556523eab20bbf76038d4c8530..8a297bbc51365e193c9b709e353bd24825ddc9cd 100644 (file)
@@ -5,7 +5,7 @@ dnl
 AC_INIT(Simulator/Aircraft/aircraft.c)
 
 dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(FlightGear, 0.51)
+AM_INIT_AUTOMAKE(FlightGear, 0.52)
 
 dnl Checks for programs.
 
@@ -97,6 +97,9 @@ dnl if using mesa, check for xmesa.h
 if test "x$ac_cv_lib_MesaGL_glNewList" = "xyes" ; then
     AC_CHECK_HEADER(GL/xmesa.h)
     AM_CONDITIONAL(ENABLE_XMESA_FX, test "x$ac_cv_header_GL_xmesa_h" = "xyes")
+else
+    dnl force a failed check
+    AM_CONDITIONAL(ENABLE_XMESA_FX, test "no" = "yes")
 fi
 
 AC_CHECK_LIB(GLU, gluLookAt)