Commit 5e6b7159 authored by Jörg Krause's avatar Jörg Krause Committed by Peter Korsgaard
Browse files

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: default avatarJörg Krause <jkrause@posteo.de>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 5de840cc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -145,6 +145,7 @@ config BR2_PACKAGE_MPD_MUSEPACK
config BR2_PACKAGE_MPD_OPUS
	bool "opus"
	select BR2_PACKAGE_OPUS
	select BR2_PACKAGE_LIBOGG
	help
	  Enable opus input support.
	  Select this if you want to play back OPUS encoded files.
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ MPD_CONF_OPT += --disable-sndfile
endif

ifeq ($(BR2_PACKAGE_MPD_OPUS),y)
MPD_DEPENDENCIES += opus
MPD_DEPENDENCIES += opus libogg
MPD_CONF_OPT += --enable-opus
else
MPD_CONF_OPT += --disable-opus