From 89b7b1662a7f64c5df4f2e2df5297848ab4d17ba Mon Sep 17 00:00:00 2001 From: max_10 Date: Wed, 29 Sep 2021 19:14:13 +0200 Subject: [PATCH] configure: update ait scan for hbbtv url configurable Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/34a896d8194b14f1a5301decabe5e42bfa1d7265 Author: max_10 Date: 2021-09-29 (Wed, 29 Sep 2021) Origin message was: ------------------ - configure: update ait scan for hbbtv url configurable ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- configure.ac | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 39e5aa123..168429bd4 100644 --- a/configure.ac +++ b/configure.ac @@ -187,11 +187,6 @@ AC_ARG_ENABLE(graphlcd, AC_DEFINE(ENABLE_GRAPHLCD, 1, [enable GraphLCD support])) AM_CONDITIONAL(ENABLE_GRAPHLCD, test "$enable_graphlcd" = "yes") -AC_ARG_ENABLE(hbbtv, - AS_HELP_STRING([--enable-hbbtv], [enable HBBTV support @<:@default=no@:>@]), - AC_DEFINE(ENABLE_HBBTV, 1, [enable HBBTV support])) -AM_CONDITIONAL(ENABLE_HBBTV, test "$enable_hbbtv" = "yes") - AC_ARG_ENABLE(keyboard-no-rc, AS_HELP_STRING([--enable-keyboard-no-rc], [enable keyboard control, disable rc control @<:@default=no@:>@]), AC_DEFINE(KEYBOARD_INSTEAD_OF_REMOTE_CONTROL, 1, [enable keyboard control, disable rc control])) @@ -228,6 +223,16 @@ AC_ARG_ENABLE(flac, AC_DEFINE(ENABLE_FLAC, 1, [enable FLAC support])) AM_CONDITIONAL(ENABLE_FLAC, test "$enable_flac" = "yes") +AC_ARG_ENABLE(hbbtv, + AS_HELP_STRING([--enable-hbbtv], [enable HbbTV support @<:@default=yes@:>@]), + [enable_hbbtv="$enableval"], + [enable_hbbtv="yes"]) + +if test "$enable_hbbtv" = "yes"; then + AC_DEFINE(ENABLE_HBBTV, 1, [enable HbbTV support]) +fi +AM_CONDITIONAL(ENABLE_HBBTV, test "$enable_hbbtv" = "yes") + AC_ARG_ENABLE(upnp, AS_HELP_STRING([--enable-upnp], [enable UPNP support @<:@default=yes@:>@]), [enable_upnp="$enableval"],