configure.ac: Move an AM_CONDITIONAL to the correct location.
This commit is contained in:
parent
1f36a6c685
commit
32be5b2246
|
@ -108,10 +108,6 @@ AC_ARG_ENABLE(cem-dt-885x, AC_HELP_STRING([--enable-cem-dt-885x],
|
||||||
[enable CEM DT-885x support [default=yes]]),
|
[enable CEM DT-885x support [default=yes]]),
|
||||||
[HW_CEM_DT_885X="$enableval"],
|
[HW_CEM_DT_885X="$enableval"],
|
||||||
[HW_CEM_DT_885X=yes])
|
[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],
|
AC_ARG_ENABLE(chronovu-la8, AC_HELP_STRING([--enable-chronovu-la8],
|
||||||
[enable ChronoVu LA8 support [default=yes]]),
|
[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])
|
AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
|
||||||
fi
|
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)
|
AM_CONDITIONAL(HW_CHRONOVU_LA8, test x$HW_CHRONOVU_LA8 = xyes)
|
||||||
if test "x$HW_CHRONOVU_LA8" = "xyes"; then
|
if test "x$HW_CHRONOVU_LA8" = "xyes"; then
|
||||||
AC_DEFINE(HAVE_HW_CHRONOVU_LA8, 1, [ChronoVu LA8 support])
|
AC_DEFINE(HAVE_HW_CHRONOVU_LA8, 1, [ChronoVu LA8 support])
|
||||||
|
|
Loading…
Reference in New Issue