mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
mpd: add option to enable/disable httpd output
It might be useful to disable this plugin. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
3cfc9b54e7
commit
021cc95332
@ -223,6 +223,11 @@ config BR2_PACKAGE_MPD_AO
|
|||||||
help
|
help
|
||||||
Enable libao output support.
|
Enable libao output support.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_HTTPD_OUTPUT
|
||||||
|
bool "httpd output"
|
||||||
|
help
|
||||||
|
Enable httpd output support.
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_JACK2
|
config BR2_PACKAGE_MPD_JACK2
|
||||||
bool "jack2"
|
bool "jack2"
|
||||||
depends on BR2_ARCH_HAS_ATOMICS
|
depends on BR2_ARCH_HAS_ATOMICS
|
||||||
|
@ -92,6 +92,12 @@ else
|
|||||||
MPD_CONF_OPTS += --disable-flac
|
MPD_CONF_OPTS += --disable-flac
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_HTTPD_OUTPUT),y)
|
||||||
|
MPD_CONF_OPTS += --enable-httpd-output
|
||||||
|
else
|
||||||
|
MPD_CONF_OPTS += --disable-httpd-output
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MPD_JACK2),y)
|
ifeq ($(BR2_PACKAGE_MPD_JACK2),y)
|
||||||
MPD_DEPENDENCIES += jack2
|
MPD_DEPENDENCIES += jack2
|
||||||
MPD_CONF_OPTS += --enable-jack
|
MPD_CONF_OPTS += --enable-jack
|
||||||
|
Loading…
x
Reference in New Issue
Block a user