From 430136fdc910001878e715358e21ca78a9ea4756 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 24 Mar 2004 00:19:59 +0000 Subject: [PATCH] 0.3.5.pre2 tweaks. --- NEWS | 4 ++-- configure.ac | 11 +++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index aa84ac62..6ef40d44 100644 --- 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. diff --git a/configure.ac b/configure.ac index 77d13997..c4ff82b5 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.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 -- 2.39.5