From: Bernd Kuhls Date: Sun, 29 Mar 2015 17:11:33 +0000 (+0200) Subject: package/mplayer: add optional lame support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=299fd2e6945e404876a7af0c3469339b4d5b0457;p=buildroot.git package/mplayer: add optional lame support Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- diff --git a/package/mplayer/mplayer.mk b/package/mplayer/mplayer.mk index ed52adfc35..dc2dcb6477 100644 --- a/package/mplayer/mplayer.mk +++ b/package/mplayer/mplayer.mk @@ -138,6 +138,13 @@ else MPLAYER_CONF_OPTS += --disable-faad endif +ifeq ($(BR2_PACKAGE_LAME),y) +MPLAYER_DEPENDENCIES += lame +MPLAYER_CONF_OPTS += --enable-mp3lame +else +MPLAYER_CONF_OPTS += --disable-mp3lame +endif + # We intentionally don't pass --disable-ass-internal --enable-ass and # let autodetection find which library to link with. ifeq ($(BR2_PACKAGE_LIBASS),y)