diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-01-09 22:03:55 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-13 22:16:10 +0100 |
commit | 57ce16aa27ab96efdcc6d95cfabd38fd20711990 (patch) | |
tree | 43fda505f7ec552a3fe57583e54ddd292c29da05 | |
parent | 9bf68d30b8ce29dda48858cb98cf2c9c7058327e (diff) | |
download | buildroot-57ce16aa27ab96efdcc6d95cfabd38fd20711990.tar.gz buildroot-57ce16aa27ab96efdcc6d95cfabd38fd20711990.zip |
package/vlc: Add optional dependency to libbluray
libbluray is an optional dependency of vlc:
http://git.videolan.org/gitweb.cgi?p=vlc.git;a=blob;f=configure.ac;h=d44151b3fb507141ce7f9b98e95fa11edcdaac01;hb=HEAD#l1739
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-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 61b00e917d..8acdc4e8df 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -179,6 +179,13 @@ else VLC_CONF_OPTS += --disable-libass endif +ifeq ($(BR2_PACKAGE_LIBBLURAY),y) +VLC_CONF_OPTS += --enable-bluray +VLC_DEPENDENCIES += libbluray +else +VLC_CONF_OPTS += --disable-bluray +endif + ifeq ($(BR2_PACKAGE_LIBDVBPSI),y) VLC_CONF_OPTS += --enable-dvbpsi VLC_DEPENDENCIES += libdvbpsi |