1
0
Fork 0

Somehow this test stopped working on my PC. At least the new solution should work for ages.

This commit is contained in:
ehofman 2006-07-17 20:22:45 +00:00
parent 98cd4a9086
commit cf15a49438

View file

@ -91,7 +91,11 @@ if test "x$with_logging" = "xno" ; then
fi
AC_ARG_ENABLE(sp_fdms, [ --enable-sp-fdms Include special purpose Flight Models], [enable_sp_fdms="$enableval"] )
AC_DEFINE([ENABLE_SP_FDM], test "x$enable_sp_fdms" = "xyes", [Define to include special purpose FDMs])
if test "x$enable_sp_fdms" != "xno"; then
AC_DEFINE([ENABLE_SP_FDM], 1, [Define to include special purpose FDMs])
else
AC_DEFINE([ENABLE_SP_FDM], 0, [Define to include special purpose FDMs])
fi
AM_CONDITIONAL(ENABLE_SP_FDM, test "x$enable_sp_fdms" != "xno")