Just checked out the latest sources of both FlightGear and SimGear from
CVS.  SimGear built fine (after configuring with
--prefix=/home/johan/install), and it installed fine as well in
/home/johan/install.

Configuring FlightGear with --with-simgear=/home/johan/install fails
however.  The reason is that while the path is successfully added to
EXTRA_DIRS, EXTRA_DIRS is not used when looking for SimGear.  So at
least from the configure script's point of view, EXTRA_DIRS (and thus my
--with-simgear switch) is ignored.

The solution is to change line 129 of configure.ac (inside the case
statement) from...

    EXTRA_DIRS="$EXTRA_DIR1 $EXTRA_DIR2"

... to...

    EXTRA_DIRS="${EXTRA_DIRS} ${EXTRA_DIR1} ${EXTRA_DIR2}"

This makes configure go through for me.

  Cheers //Johan


_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to