diff options
| author | Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com> | 2015-12-31 12:02:22 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-31 15:22:07 +0100 |
| commit | 217171565fe7c1d8b3bdfe538da11ed190f46b28 (patch) | |
| tree | 3138dfaec348652455ab3cf836f330f605865437 /package/vlc | |
| parent | eac47611bfcaad16561e1cc3c9a1d9d71029157e (diff) | |
| download | buildroot-217171565fe7c1d8b3bdfe538da11ed190f46b28.tar.gz buildroot-217171565fe7c1d8b3bdfe538da11ed190f46b28.zip | |
vlc: add optional dependency to libmatroska
libmatroska is an optional dependency to vlc:
http://git.videolan.org/?p=vlc.git;a=blob;f=configure.ac;h=c46120d7f2a7d49d68d488d617e071148b8c5595;hb=HEAD#l2044
Add it to vlc.mk to get reproducable builds.
Signed-off-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/vlc')
| -rw-r--r-- | package/vlc/vlc.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index ee21c16331..a080e3efda 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -202,6 +202,13 @@ else VLC_CONF_OPTS += --disable-mad endif +ifeq ($(BR2_PACKAGE_LIBMATROSKA),y) +VLC_CONF_OPTS += --enable-mkv +VLC_DEPENDENCIES += libmatroska +else +VLC_CONF_OPTS += --disable-mkv +endif + ifeq ($(BR2_PACKAGE_LIBMODPLUG),y) VLC_CONF_OPTS += --enable-mod VLC_DEPENDENCIES += libmodplug |

