[vlc-commits] contrib: lame: Add a dependency on gettext

Martin Storsjö git at videolan.org
Sat May 26 23:15:44 CEST 2018


vlc | branch: master | Martin Storsjö <martin at martin.st> | Sun May 27 00:12:15 2018 +0300| [8d0093e71e6297ae6a60c3170e80d0d722f5be5e] | committer: Martin Storsjö

contrib: lame: Add a dependency on gettext

When doing $(RECONF) for the lame library (which we do since
69f8fb3fc2f23d), we need to have gettext available while reconfiguring.

This fixes errors like these when building lame:

configure.in:379: error: possibly undefined macro: AM_ICONV
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8d0093e71e6297ae6a60c3170e80d0d722f5be5e
---

 contrib/src/lame/rules.mak | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/contrib/src/lame/rules.mak b/contrib/src/lame/rules.mak
index e49a9d714f..f4c4b1d1bb 100644
--- a/contrib/src/lame/rules.mak
+++ b/contrib/src/lame/rules.mak
@@ -3,6 +3,9 @@
 LAME_VERSION := 3.99.5
 LAME_URL := $(SF)/lame/lame-$(LAME_VERSION).tar.gz
 
+# gettext is necessary for $(RECONF) of lame
+DEPS_lame = gettext
+
 $(TARBALLS)/lame-$(LAME_VERSION).tar.gz:
 	$(call download_pkg,$(LAME_URL),lame)
 



More information about the vlc-commits mailing list