0.52 ...
This commit is contained in:
parent
ba6f80b9fd
commit
9cdd4bdf3b
2 changed files with 12 additions and 1 deletions
8
NEWS
8
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
|
New in 0.51
|
||||||
* Translucent menus
|
* Translucent menus
|
||||||
* Various HUD intensities so you can find something that is readable for the
|
* Various HUD intensities so you can find something that is readable for the
|
||||||
current conditions and lighting.
|
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
|
New in 0.50
|
||||||
* HUD updates from Charlie Hotchkiss (ladder number rotate w/ ladder, control
|
* HUD updates from Charlie Hotchkiss (ladder number rotate w/ ladder, control
|
||||||
|
|
|
@ -5,7 +5,7 @@ dnl
|
||||||
AC_INIT(Simulator/Aircraft/aircraft.c)
|
AC_INIT(Simulator/Aircraft/aircraft.c)
|
||||||
|
|
||||||
dnl Initialize the automake stuff
|
dnl Initialize the automake stuff
|
||||||
AM_INIT_AUTOMAKE(FlightGear, 0.51)
|
AM_INIT_AUTOMAKE(FlightGear, 0.52)
|
||||||
|
|
||||||
dnl Checks for programs.
|
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
|
if test "x$ac_cv_lib_MesaGL_glNewList" = "xyes" ; then
|
||||||
AC_CHECK_HEADER(GL/xmesa.h)
|
AC_CHECK_HEADER(GL/xmesa.h)
|
||||||
AM_CONDITIONAL(ENABLE_XMESA_FX, test "x$ac_cv_header_GL_xmesa_h" = "xyes")
|
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
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB(GLU, gluLookAt)
|
AC_CHECK_LIB(GLU, gluLookAt)
|
||||||
|
|
Loading…
Add table
Reference in a new issue