mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
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:
parent
2e0cc497e1
commit
a7a786ff4f
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user