diff mbox

[1/2] package/vlc: Add optional dependency to zlib

Message ID 1452373435-5426-1-git-send-email-bernd.kuhls@t-online.de
State Accepted
Commit 9bf68d30b8ce29dda48858cb98cf2c9c7058327e
Headers show

Commit Message

Bernd Kuhls Jan. 9, 2016, 9:03 p.m. UTC
zlib is an optional dependency of vlc:
http://git.videolan.org/gitweb.cgi?p=vlc.git;a=blob;f=configure.ac;h=d44151b3fb507141ce7f9b98e95fa11edcdaac01;hb=HEAD#l811

Thanks to Yann for pointing this out:
http://patchwork.ozlabs.org/patch/529248/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/vlc/vlc.mk | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Peter Korsgaard Jan. 13, 2016, 9:15 p.m. UTC | #1
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > zlib is an optional dependency of vlc:
 > http://git.videolan.org/gitweb.cgi?p=vlc.git;a=blob;f=configure.ac;h=d44151b3fb507141ce7f9b98e95fa11edcdaac01;hb=HEAD#l811

 > Thanks to Yann for pointing this out:
 > http://patchwork.ozlabs.org/patch/529248/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.
diff mbox

Patch

diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk
index a080e3e..61b00e9 100644
--- a/package/vlc/vlc.mk
+++ b/package/vlc/vlc.mk
@@ -368,4 +368,8 @@  else
 VLC_CONF_OPTS += --without-x
 endif
 
+ifeq ($(BR2_PACKAGE_ZLIB),y)
+VLC_DEPENDENCIES += zlib
+endif
+
 $(eval $(autotools-package))