]> git.mxchange.org Git - simgear.git/commitdiff
0.3.5.pre2 tweaks.
authorcurt <curt>
Wed, 24 Mar 2004 00:19:59 +0000 (00:19 +0000)
committercurt <curt>
Wed, 24 Mar 2004 00:19:59 +0000 (00:19 +0000)
NEWS
configure.ac

diff --git a/NEWS b/NEWS
index aa84ac62249985e78cddbfb9d659cb8ffb7e6529..6ef40d44bdb2734c4b78a9a14ac8772f324758bd 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-New in 0.3.5.pre1
-* March 22, 2004
+New in 0.3.5.pre2
+* March 23, 2004
 
 * Added Andy's nasal interpreter for small built in scripting tasks.
   Nasal integrates nicely with FlightGear's property system.
index 77d13997571a8fb28c881b8d1ac7def1217e08d1..c4ff82b5b60d1201216b2716a0113b63942f0a38 100644 (file)
@@ -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.5.pre1)
+AM_INIT_AUTOMAKE(SimGear, 0.3.5.pre2)
 
 dnl Specify KAI C++ compiler and flags.
 dnl Borrowed with slight modification from blitz distribution.
@@ -113,6 +113,13 @@ else
 fi
 AM_CONDITIONAL(ENABLE_JPEG_SERVER, test "x$with_jpeg_factory" = "xyes")
 
+# specify the plib location
+AC_ARG_WITH(plib, [  --with-plib=PREFIX      Specify the prefix path to plib])
+
+if test "x$with_plib" != "x" ; then
+    echo "plib prefix is $with_plib"
+    EXTRA_DIRS="${EXTRA_DIRS} $with_plib"
+fi
 
 dnl Determine an extra directories to add to include/lib search paths
 case "${host}" in
@@ -127,7 +134,7 @@ case "${host}" in
     if test -d /opt/X11R6 ; then
         EXTRA_DIR2="/opt/X11R6"
     fi
-    EXTRA_DIRS="$EXTRA_DIR1 $EXTRA_DIR2"
+    EXTRA_DIRS="${EXTRA_DIRS} $EXTRA_DIR1 $EXTRA_DIR2"
     ;;
 
 esac