AC_PROG_INSTALL
AC_PROG_LN_S
+# specify the simgear location
+AC_ARG_WITH(simgear, [ --with-simgear=PREFIX Specify the prefix path to simgear])
+
+if test "x$with_simgear" != "x" ; then
+ echo "SimGear prefix path is $with_simgear"
+ EXTRA_DIRS="${EXTRA_DIRS} $with_simgear"
+fi
+
dnl set the $host variable based on local machine/os
AC_CANONICAL_HOST
if test "$CXX" = "CC"; then
AR="CC -ar"
ARFLAGS="-o"
+ CXXFLAGS="$CXXFLAGS -I$with_simgear/include/simgear/compatibility"
else
AR="ar"
ARFLAGS="cru"
EXTRA_DIRS="${EXTRA_DIRS} $with_metakit"
fi
-# specify the simgear location
-AC_ARG_WITH(simgear, [ --with-simgear=PREFIX Specify the prefix path to simgear])
-
-if test "x$with_simgear" != "x" ; then
- echo "SimGear prefix path is $with_simgear"
- EXTRA_DIRS="${EXTRA_DIRS} $with_simgear"
-fi
-
dnl Used by JSBSim to conditionally compile in fgfs interface code
AC_DEFINE([FGFS], 1, [Define so that JSBSim compiles in 'library' mode])