mpd: enable cdio-paranoia support

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2018-04-28 18:51:36 +02:00 committed by Thomas Petazzoni
parent 2e0cc497e1
commit a7a786ff4f
2 changed files with 13 additions and 0 deletions

View File

@ -174,6 +174,12 @@ config BR2_PACKAGE_MPD_TWOLAME
comment "Input plugins"
config BR2_PACKAGE_MPD_CDIO_PARANOIA
bool "cdio-paranoia"
select BR2_PACKAGE_LIBCDIO_PARANOIA
help
Enable cdio-paranoia support.
config BR2_PACKAGE_MPD_CURL
bool "curl"
select BR2_PACKAGE_LIBCURL

View File

@ -59,6 +59,13 @@ else
MPD_CONF_OPTS += --disable-bzip2
endif
ifeq ($(BR2_PACKAGE_MPD_CDIO_PARANOIA),y)
MPD_DEPENDENCIES += libcdio-paranoia
MPD_CONF_OPTS += --enable-cdio-paranoia
else
MPD_CONF_OPTS += --disable-cdio-paranoia
endif
ifeq ($(BR2_PACKAGE_MPD_CURL),y)
MPD_DEPENDENCIES += libcurl
MPD_CONF_OPTS += --enable-curl