package/mpd: opus plugin needs libogg as well

Fixes http://autobuild.buildroot.net/results/492/4924194292a428a295ded2f7aa0b9a3f81ed1b4a/

The opus decoder plugin depends on libopus and libogg.

[Peter: reworded commit message]
Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Jörg Krause 2014-08-26 11:26:28 +02:00 committed by Peter Korsgaard
parent 5de840cc6a
commit 5e6b7159d7
2 changed files with 2 additions and 1 deletions

View File

@ -145,6 +145,7 @@ config BR2_PACKAGE_MPD_MUSEPACK
config BR2_PACKAGE_MPD_OPUS config BR2_PACKAGE_MPD_OPUS
bool "opus" bool "opus"
select BR2_PACKAGE_OPUS select BR2_PACKAGE_OPUS
select BR2_PACKAGE_LIBOGG
help help
Enable opus input support. Enable opus input support.
Select this if you want to play back OPUS encoded files. Select this if you want to play back OPUS encoded files.

View File

@ -97,7 +97,7 @@ MPD_CONF_OPT += --disable-sndfile
endif endif
ifeq ($(BR2_PACKAGE_MPD_OPUS),y) ifeq ($(BR2_PACKAGE_MPD_OPUS),y)
MPD_DEPENDENCIES += opus MPD_DEPENDENCIES += opus libogg
MPD_CONF_OPT += --enable-opus MPD_CONF_OPT += --enable-opus
else else
MPD_CONF_OPT += --disable-opus MPD_CONF_OPT += --disable-opus