From 9cdd4bdf3b3f8d21dba6fef5c969112311f57abe Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 22 Jul 1998 21:37:19 +0000 Subject: [PATCH] 0.52 ... --- NEWS | 8 ++++++++ configure.in | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3998207d9..24279a101 100644 --- 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 diff --git a/configure.in b/configure.in index e782461d6..8a297bbc5 100644 --- a/configure.in +++ b/configure.in @@ -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)