diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-12 22:29:35 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-16 13:37:06 +0200 |
commit | 6191737cfc54a277445673ea86d564ea48d51318 (patch) | |
tree | 1d63cd627b8c0071eff8053df360848cb9c8ea53 | |
parent | 07d3f1d99f8dd8d191dc5e5f40391d87dd5dfa3f (diff) | |
download | buildroot-6191737cfc54a277445673ea86d564ea48d51318.tar.gz buildroot-6191737cfc54a277445673ea86d564ea48d51318.zip |
package/vlc: add optional support for skins2
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/vlc/vlc.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index 53a2b61633..ed682e60b3 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -74,7 +74,6 @@ VLC_CONF_OPTS += \ --disable-schroedinger \ --disable-shine \ --disable-shout \ - --disable-skins2 \ --disable-sndio \ --disable-spatialaudio \ --disable-srt \ @@ -560,6 +559,13 @@ else VLC_CONF_OPTS += --without-x endif +ifeq ($(BR2_PACKAGE_XLIB_LIBXEXT)$(BR2_PACKAGE_XLIB_LIBXINERAMA)$(BR2_PACKAGE_XLIB_LIBXPM),yyy) +VLC_CONF_OPTS += --enable-skins2 +VLC_DEPENDENCIES += xlib_libXext xlib_libXinerama xlib_libXpm +else +VLC_CONF_OPTS += --disable-skins2 +endif + ifeq ($(BR2_PACKAGE_ZLIB),y) VLC_DEPENDENCIES += zlib endif |