From 27f98d24ebf8d1bd1f394a0d403a9362490a8251 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 3 Jun 2003 18:48:49 +0000 Subject: [PATCH] Various 0.3.3 last minute tweaks. --- Doxyfile | 2 +- DoxygenMain.cxx | 4 ++-- Makefile.am | 2 +- NEWS | 7 +++++++ configure.ac | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Doxyfile b/Doxyfile index e00e7963..76b6676b 100644 --- a/Doxyfile +++ b/Doxyfile @@ -22,7 +22,7 @@ PROJECT_NAME = SimGear # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.3.2 +PROJECT_NUMBER = 0.3.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/DoxygenMain.cxx b/DoxygenMain.cxx index 5ef9e167..8a65e965 100644 --- a/DoxygenMain.cxx +++ b/DoxygenMain.cxx @@ -69,10 +69,10 @@ * * - A sound effects manager. (SGSoundMgr, SGSimpleSound, SGSound) * - * - A threading abstraction. + * - A threading abstraction. (SGThread) * * - A simple but highly functional XML parser that interfaces nicely - * with the property manager. + * with the property manager. (easyxml.hxx) * \section supports Supported Platforms * SimGear has been built on the following platforms: diff --git a/Makefile.am b/Makefile.am index ae7eb9c6..f4c8249c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,7 @@ EXTRA_DIST = \ SUBDIRS = src-libs simgear dist-hook: - (cd $(top_srcdir); $(HOME)/projects/FlightGear-0.7/admin/am2dsp.pl) + (cd $(top_srcdir); $(HOME)/projects/FlightGear-0.9/admin/am2dsp.pl) # # Rule to build RPM distribution package diff --git a/NEWS b/NEWS index 6876ada5..839efe0f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +New in 0.3.3 +* June 3, 2003 + +* Fix a compile problem for cygwin +* Updated/tweaked doxygen documentation in several areas + + New in 0.3.2 * June 2, 2003 diff --git a/configure.ac b/configure.ac index fb11f494..6dff2c2f 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ dnl Require at least automake 2.52 AC_PREREQ(2.52) dnl Initialize the automake stuff -AM_INIT_AUTOMAKE(SimGear, 0.3.2) +AM_INIT_AUTOMAKE(SimGear, 0.3.3) dnl Specify KAI C++ compiler and flags. dnl Borrowed with slight modification from blitz distribution.