]> git.mxchange.org Git - simgear.git/commitdiff
v0.3.10-pre2 updates.
authorcurt <curt>
Thu, 23 Mar 2006 16:37:35 +0000 (16:37 +0000)
committercurt <curt>
Thu, 23 Mar 2006 16:37:35 +0000 (16:37 +0000)
NEWS
SimGear.dsp
configure.ac

diff --git a/NEWS b/NEWS
index fdd8413ee474a9ad50aad97f67890a9ea61fb956..3ab9bd36b1ac4e898945c50f49bea3cc2e4854be 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-New in 0.3.10-pre1
-* March 20, 2006
+New in 0.3.10-pre2
+* March 23, 2006
 
 * Add a small accessor function to expose local timezone offset.
 * Improved exception handling and made output more helpful in various places.
@@ -10,6 +10,7 @@ New in 0.3.10-pre1
   references, sgmaterial references, sgmatmodel references, and
   sgsoundsample references.
 * Add support for point sprites.
+* Updates to rain cone rendering.
 * Add a new vector library and integrate that with improved coordinate
   system conversion code.
 * Mutex locking and cleanup improvements in the threading abstraction
@@ -20,6 +21,7 @@ New in 0.3.10-pre1
 * Various platform related bug fixes.
 * Various compiler related bug/warning fixes.
 * Clean up some things that triggered valgrind warnings.
+* Fix a Nasal cmp() bug.
 
 
 New in 0.3.9
index d343e4afd177ee71dcff7d8bd703e77e855ba22d..7faf5ad5352cedc77468bb6880ccf34352e1b249 100644 (file)
@@ -35,7 +35,7 @@ RSC=rc.exe
 # PROP Output_Dir "Release"\r
 # PROP Intermediate_Dir "Release"\r
 # PROP Target_Dir ""\r
-# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /FD /c  /MT /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I ""..\OpenAL" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H"\r
+# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /FD /c  /MT /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I "..\OpenAL 1.0 Software Development Kit\include" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H"\r
 # ADD RSC /l 0x409 /d "NDEBUG"\r
 BSC32=bscmake.exe\r
 # ADD BASE BSC32 /nologo\r
@@ -51,7 +51,7 @@ LINK32=link.exe -lib
 # PROP Output_Dir "Debug"\r
 # PROP Intermediate_Dir "Debug"\r
 # PROP Target_Dir ""\r
-# ADD CPP /nologo /W3 /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_MBCS" /FR /FD /GZ /c  /MT /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I ""..\OpenAL" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H"\r
+# ADD CPP /nologo /W3 /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_MBCS" /FR /FD /GZ /c  /MTd /I "." /I ".." /I ".\SimGear" /I "..\zlib-1.2.3" /I "..\OpenAL 1.0 Software Development Kit\include" /D "_USE_MATH_DEFINES" /D "_CRT_SECURE_NO_DEPRECATE" /D "HAVE_CONFIG_H"\r
 # ADD RSC /l 0x409 /d "_DEBUG"\r
 BSC32=bscmake.exe\r
 # ADD BASE BSC32 /nologo\r
index eccc4e92f1a0e58f068fee011bb656a759ff140d..37ae6fd42ae245a8e98ceed4110c4f9e9e871f50 100644 (file)
@@ -8,7 +8,7 @@ dnl Require at least automake 2.52
 AC_PREREQ(2.52)
 
 dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(SimGear, 0.3.10-pre1)
+AM_INIT_AUTOMAKE(SimGear, 0.3.10-pre2)
 
 dnl Specify KAI C++ compiler and flags.
 dnl Borrowed with slight modification from blitz distribution.