From: Peter Korsgaard Date: Fri, 27 Jan 2012 10:18:52 +0000 (+0100) Subject: mplayer: add optional vorbis dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5796753b6b4caba703cf23f45f68b7715d1150a4;p=buildroot.git mplayer: add optional vorbis dependency Signed-off-by: Peter Korsgaard --- diff --git a/package/multimedia/mplayer/mplayer.mk b/package/multimedia/mplayer/mplayer.mk index 2ac5e16e2f..216bb4684c 100644 --- a/package/multimedia/mplayer/mplayer.mk +++ b/package/multimedia/mplayer/mplayer.mk @@ -72,6 +72,11 @@ MPLAYER_DEPENDENCIES += tremor MPLAYER_CONF_OPTS += --disable-tremor-internal --enable-tremor endif +ifeq ($(BR2_PACKAGE_LIBVORBIS),y) +MPLAYER_DEPENDENCIES += libvorbis +MPLAYER_CONF_OPTS += --enable-libvorbis +endif + ifeq ($(BR2_PACKAGE_LIBMAD),y) MPLAYER_DEPENDENCIES += libmad else