Change default status of atcdcl compilation from 'enabled' to 'disabled'.
This commit is contained in:
parent
2f4b6d2168
commit
8b74319139
1 changed files with 4 additions and 4 deletions
|
@ -179,13 +179,13 @@ AM_CONDITIONAL(ENABLE_SP_FDM, test "x$enable_sp_fdms" != "xno")
|
||||||
|
|
||||||
# Specify whether we want to compile ATCDCL.
|
# Specify whether we want to compile ATCDCL.
|
||||||
# default to with_atcdcl=yes
|
# default to with_atcdcl=yes
|
||||||
AC_ARG_ENABLE(atcdcl, [ --enable-atcdcl Compile and link the depricated atc/ai module], [enable_atcdcl="$enableval"] )
|
AC_ARG_ENABLE(atcdcl, [ --enable-atcdcl Compile and link the depricated atc/ai module], [], [enable_atcdcl="$enableval"] )
|
||||||
if test "x$enable_atcdcl" != "xno"; then
|
if test "x$enable_atcdcl" = "xyes"; then
|
||||||
AC_DEFINE([ENABLE_ATCDCL], 1, [Define to include old ATC/AI module])
|
AC_DEFINE([ENABLE_ATCDCL], 1, [Define to include old ATC/AI module])
|
||||||
else
|
else
|
||||||
AC_DEFINE([ENABLE_ATCDCL], 0, [Define to include old ATC/AI module])
|
AC_DEFINE([ENABLE_ATCDCL], 0, [Define to include old ATC/AI module])
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(ENABLE_ATCDCL, test "x$enable_atcdcl" != "xno")
|
AM_CONDITIONAL(ENABLE_ATCDCL, test "x$enable_atcdcl" = "xyes")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -908,7 +908,7 @@ else
|
||||||
echo "Include special purpose flight models: no"
|
echo "Include special purpose flight models: no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "x$enable_atcdcl" != "xno"; then
|
if test "x$enable_atcdcl" = "xyes"; then
|
||||||
echo "Build depricated ATC/AI module: yes"
|
echo "Build depricated ATC/AI module: yes"
|
||||||
else
|
else
|
||||||
echo "Build depricated ATC/AI module: no"
|
echo "Build depricated ATC/AI module: no"
|
||||||
|
|
Loading…
Reference in a new issue