configure.ac: Move an AM_CONDITIONAL to the correct location.

This commit is contained in:
Uwe Hermann 2013-06-21 15:18:33 +02:00
parent 1f36a6c685
commit 32be5b2246
1 changed files with 5 additions and 4 deletions

View File

@ -108,10 +108,6 @@ AC_ARG_ENABLE(cem-dt-885x, AC_HELP_STRING([--enable-cem-dt-885x],
[enable CEM DT-885x support [default=yes]]),
[HW_CEM_DT_885X="$enableval"],
[HW_CEM_DT_885X=yes])
AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
if test "x$HW_CEM_DT_885X" = "xyes"; then
AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
fi
AC_ARG_ENABLE(chronovu-la8, AC_HELP_STRING([--enable-chronovu-la8],
[enable ChronoVu LA8 support [default=yes]]),
@ -320,6 +316,11 @@ if test "x$HW_BRYMEN_DMM" = "xyes"; then
AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
fi
AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
if test "x$HW_CEM_DT_885X" = "xyes"; then
AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
fi
AM_CONDITIONAL(HW_CHRONOVU_LA8, test x$HW_CHRONOVU_LA8 = xyes)
if test "x$HW_CHRONOVU_LA8" = "xyes"; then
AC_DEFINE(HAVE_HW_CHRONOVU_LA8, 1, [ChronoVu LA8 support])