Merge branch 'ehofman/config' into next

This commit is contained in:
Tim Moore 2010-02-14 19:42:59 +01:00
commit 333d381f41
2 changed files with 90 additions and 52 deletions

View File

@ -6,19 +6,25 @@ dnl
AC_DEFUN([wi_EXTRA_IDIR], [ AC_DEFUN([wi_EXTRA_IDIR], [
incdir="$1" incdir="$1"
if test -r $incdir ; then if test -r $incdir ; then
case "$CPPFLAGS" in already=""
*-I${incdir}*) for CPPflag in $CPPFLAGS ; do
# echo " + already had $incdir" 1>&6 if test "_$CPPflag" = "_-I${incdir}" ; then
;; already=yes
*) break
if test "$CPPFLAGS" = "" ; then fi
CPPFLAGS="-I$incdir" done
else if test -n "$already" ; then
CPPFLAGS="$CPPFLAGS -I$incdir" echo " + already had -I$incdir" 1>&AS_MESSAGE_LOG_FD
fi else
echo " + found $incdir" 1>&6 if test "$CPPFLAGS" = "" ; then
;; CPPFLAGS="-I$incdir"
esac else
CPPFLAGS="$CPPFLAGS -I$incdir"
fi
echo " + added -I$incdir" 1>&AS_MESSAGE_LOG_FD
fi
else
echo " + IDIR is not accessible: '$myincdir'" 1>&AS_MESSAGE_LOG_FD
fi fi
]) ])
dnl dnl
@ -28,19 +34,25 @@ dnl
AC_DEFUN([wi_EXTRA_LDIR], [ AC_DEFUN([wi_EXTRA_LDIR], [
mylibdir="$1" mylibdir="$1"
if test -r $mylibdir ; then if test -r $mylibdir ; then
case "$LDFLAGS" in already=""
*-L${mylibdir}*) for LDflag in $LDFLAGS ; do
# echo " + already had $mylibdir" 1>&6 if test "_$LDflag" = "_-L${mylibdir}" ; then
;; already=yes
*) break
if test "$LDFLAGS" = "" ; then fi
LDFLAGS="-L$mylibdir" done
else if test -n "$already" ; then
LDFLAGS="$LDFLAGS -L$mylibdir" echo " + already had -L$mylibdir" 1>&AS_MESSAGE_LOG_FD
fi else
echo " + found $mylibdir" 1>&6 if test "$LDFLAGS" = "" ; then
;; LDFLAGS="-L$mylibdir"
esac else
LDFLAGS="$LDFLAGS -L$mylibdir"
fi
echo " + added -L$mylibdir" 1>&AS_MESSAGE_LOG_FD
fi
else
echo " + LDIR is not accessible: '$mylibdir'" 1>&AS_MESSAGE_LOG_FD
fi fi
]) ])
dnl dnl
@ -50,12 +62,9 @@ dnl
AC_DEFUN([wi_EXTRA_PDIR], [ AC_DEFUN([wi_EXTRA_PDIR], [
progdir="$1" progdir="$1"
if test -r $progdir ; then if test -r $progdir ; then
case "$PATH" in case ":$PATH:" in
*:${progdir}*) *:${progdir}:*)
# echo " + already had $progdir" 1>&6 echo " + already had $progdir in \$PATH" 1>&AS_MESSAGE_LOG_FD
;;
*${progdir}:*)
# echo " + already had $progdir" 1>&6
;; ;;
*) *)
if test "$PATH" = "" ; then if test "$PATH" = "" ; then
@ -63,9 +72,11 @@ if test -r $progdir ; then
else else
PATH="$PATH:$progdir" PATH="$PATH:$progdir"
fi fi
echo " + found $progdir" 1>&6 echo " + appended $progdir to \$PATH" 1>&AS_MESSAGE_LOG_FD
;; ;;
esac esac
else
echo " + PDIR is not accessible: '$progdir'" 1>&AS_MESSAGE_LOG_FD
fi fi
]) ])
dnl dnl
@ -89,23 +100,32 @@ if test "$subexdirs" = "" ; then
subexdirs="-" subexdirs="-"
fi fi
for subexdir in $subexdirs ; do for subexdir in $subexdirs ; do
if test "$subexdir" = "-" ; then if test "$subexdir" = "-" ; then
subexdir="" subexdir=""
else else
subexdir="/$subexdir" subexdir="/$subexdir"
fi fi
for exdir in $exdirs ; do for exdir in $exdirs ; do
if test "$exdir" != "/usr" || test "$subexdir" != ""; then if test "$exdir" != "/usr" || test "$subexdir" != ""; then
incdir="${exdir}/include${subexdir}" incdir="${exdir}/include${subexdir}"
wi_EXTRA_IDIR($incdir) wi_EXTRA_IDIR($incdir)
mylibdir="${exdir}/lib${subexdir}" dnl On 64-bit machines, if lib64/ exists and is not identical to lib/
wi_EXTRA_LDIR($mylibdir) dnl then it should be listed here, listed ahead of lib/.
mylibdir64="${exdir}/lib64${subexdir}"
mylibdir="${exdir}/lib${subexdir}"
progdir="${exdir}/bin${subexdir}" if test "x86_64" = $(uname -m) \
wi_EXTRA_PDIR($progdir) -a ! ${mylibdir64} -ef ${mylibdir} ; then
fi wi_EXTRA_LDIR($mylibdir64)
done fi
wi_EXTRA_LDIR($mylibdir)
progdir="${exdir}/bin${subexdir}"
wi_EXTRA_PDIR($progdir)
fi
done
done done
]) ])
dnl dnl

View File

@ -437,11 +437,18 @@ esac
AM_CONDITIONAL(HAVE_FRAMEWORK_PLIB, test "x$ac_cv_framework_PLIB" != "x") AM_CONDITIONAL(HAVE_FRAMEWORK_PLIB, test "x$ac_cv_framework_PLIB" != "x")
AC_CHECK_HEADER(plib/ul.h) AC_CHECK_HEADER(plib/ul.h)
if test "x$ac_cv_header_plib_ul_h" != "xyes"; then
AC_CHECK_LIB(plibul,ulInit)
if test "x$ac_cv_header_plib_ul_h" != "xyes" \
-o "x$ac_cv_lib_plibul_ulInit" != "xyes" ; then
echo echo
echo "You *must* have the plib library installed on your system to build" echo "You *must* have the plib library installed on your system to build"
echo "SimGear!" echo "SimGear!"
echo echo
echo " LIBS: '$LIBS'"
echo " LDFLAGS: '$LDFLAGS'"
echo " CPPFLAGS: '$CPPFLAGS'"
echo
echo "Please see README.plib for more details." echo "Please see README.plib for more details."
echo echo
echo "configure aborted." echo "configure aborted."
@ -507,15 +514,22 @@ case "${host}" in
fi fi
;; ;;
esac esac
AM_CONDITIONAL(HAVE_FRAMEWORK_OSG, test "x$ac_cv_framework_osg" != "x") AM_CONDITIONAL(HAVE_FRAMEWORK_OSG, test "x$ac_cv_framework_osg" != "x")
AC_CHECK_HEADER(osg/Version) AC_CHECK_HEADER(osg/Version)
if test "x$ac_cv_header_osg_Version" != "xyes" -o "x$ac_cv_lib_OpenThreads_OpenThreadsGetVersion" != "xyes"; then if test "x$ac_cv_header_osg_Version" != "xyes" -o "x$ac_cv_lib_OpenThreads_OpenThreadsGetVersion" != "xyes"; then
if test "x$ac_cv_framework_osg" != "xyes"; then if test "x$ac_cv_framework_osg" != "xyes"; then
echo echo
echo "Warning: The OpenThreads library was not found on this system." echo "You *must* have the OpenThreads library installed on your system"
echo " Mybe you forgot to sepcify --with-osg?" echo "to build this version of SimGear!"
echo "Without the OpenSceneGraph library FlightGear will not work." echo " Maybe you need to specify --with-osg=DIR."
echo " Maybe you need to specify some LDFLAGS to help the linker."
echo
echo " LIBS: '$LIBS'"
echo " LDFLAGS: '$LDFLAGS'"
echo " CPPFLAGS: '$CPPFLAGS'"
echo echo
echo "Please see README.OSG for more details." echo "Please see README.OSG for more details."
echo echo
@ -530,6 +544,10 @@ if test "x$ac_cv_header_boost_version_hpp" != "xyes"; then
echo "You *must* have the Boost library installed on your system" echo "You *must* have the Boost library installed on your system"
echo "to build this version of SimGear!" echo "to build this version of SimGear!"
echo echo
echo " LIBS: '$LIBS'"
echo " LDFLAGS: '$LDFLAGS'"
echo " CPPFLAGS: '$CPPFLAGS'"
echo
echo "configure aborted." echo "configure aborted."
exit exit
fi fi