Various pre-0.0.5 release tweaks.
This commit is contained in:
parent
d86e28a880
commit
f56af62248
4 changed files with 48 additions and 6 deletions
|
@ -1,7 +1,10 @@
|
|||
EXTRA_DIST = README README.howto README.gpc acsite.m4 \
|
||||
EXTRA_DIST = \
|
||||
README README.howto README.gpc \
|
||||
TerraGear.dsp TerraGear.dsw
|
||||
acinclude.m4 \
|
||||
autogen.sh
|
||||
|
||||
SUBDIRS = src
|
||||
|
||||
dist-hook:
|
||||
(cd $(top_srcdir); $(HOME)/projects/FlightGear-0.7/admin/am2dsp.pl)
|
||||
(cd $(top_srcdir); $(HOME)/projects/FlightGear-0.9/admin/am2dsp.pl)
|
||||
|
|
39
NEWS
39
NEWS
|
@ -1,5 +1,44 @@
|
|||
New in 0.0.5
|
||||
* February 25, 2003
|
||||
|
||||
* Added a tutorial for how to generate scenery.
|
||||
* Add support for UK OSBG36 coordinate systems (when calculating
|
||||
texture coordinates)
|
||||
* Updated dem libs to support z units of feet.
|
||||
* Added tguserdef, a utility for adding user-defined points, lines,
|
||||
and polygons to scenery. It uses the regular XML property format,
|
||||
which users can create easily in a text editor. See
|
||||
src/Prep/UserDef/sample.xml for examples.
|
||||
|
||||
* Added support for generating accurate and correct runway and approach
|
||||
lighting.
|
||||
* Use wgs_84 math to layout runways and airports for increased accuracy.
|
||||
This also fixed problems with runway textures not matching up exactly.
|
||||
* Add a clearing around every runway so procedurally generated objects
|
||||
can't obstruct an approach
|
||||
|
||||
* modified landcover code to borrow a cover type from an adjoining
|
||||
tile if it ends up as default -- this will help avoid resolution
|
||||
errors near rivers, urban areas, etc.
|
||||
* Fixed a bug in triangulating that was potentially overwriting other
|
||||
memory when creating the hole list to pass to the triangulator. This
|
||||
fixes a lot of glitches!
|
||||
* Don't generate a DEM tile when all elevations are zero. This should
|
||||
save about 70% worldwide with the GTOPO30 (less with the USGS DEM-3).
|
||||
|
||||
* Added a utility to allow insertion of aerial photos into TerraGear scenery
|
||||
* libgpc.a renamed to libgenpolyclip.a to avoid a conflict with the
|
||||
gnu pascal compiler.
|
||||
* Updated/modernized automake/autoconf scripts
|
||||
* new library to support NIMA's Vector Product Format
|
||||
|
||||
* Cygwin fixes
|
||||
* Irix fixes
|
||||
|
||||
|
||||
New in 0.0.4
|
||||
* December 19, 2000
|
||||
|
||||
* We now have a much more robust "point in a polygon" routine
|
||||
(i.e. finds a random point inside a polygon, but not inside a hole
|
||||
in that polygon.)
|
||||
|
|
|
@ -197,7 +197,7 @@ LIBS="$base_LIBS"
|
|||
AC_SUBST(base_LIBS)
|
||||
AC_SUBST(opengl_LIBS)
|
||||
|
||||
# needed for plib 1.3.x and later
|
||||
# needed for plib 1.6.x or later
|
||||
AC_CHECK_LIB(plibul, ulInit,,,)
|
||||
|
||||
AM_CONDITIONAL(HAVE_XWINDOWS, test "x$ac_cv_lib_X11_XCreateWindow" = "xyes" )
|
||||
|
@ -272,8 +272,8 @@ AC_TRY_RUN([
|
|||
#define XSTRINGIFY(X) #X
|
||||
|
||||
#define MIN_MAJOR 0
|
||||
#define MIN_MINOR 0
|
||||
#define MIN_MICRO 13
|
||||
#define MIN_MINOR 3
|
||||
#define MIN_MICRO 0
|
||||
|
||||
int main() {
|
||||
int major, minor, micro;
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#---------------------------------------------------------------------------
|
||||
|
||||
|
||||
EXTRA_DIST = chop.pl trans.pl
|
||||
EXTRA_DIST = chop.pl
|
||||
|
||||
bin_PROGRAMS = photo wgs84offset findcorners
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue