diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-12 22:29:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-16 13:36:38 +0200 |
commit | 02cc1e770671ab65bc0b2767e4e60355af98e7d2 (patch) | |
tree | 2c971477e3257fb9019f92242ca50e9bfa295edd | |
parent | 02091bcc25385c7699ea610d45d8fb4df7b6649d (diff) | |
download | buildroot-02cc1e770671ab65bc0b2767e4e60355af98e7d2.tar.gz buildroot-02cc1e770671ab65bc0b2767e4e60355af98e7d2.zip |
package/vlc: add optional dependency to libsecret
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 fab08b950d..f777d86bda 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -74,7 +74,6 @@ VLC_CONF_OPTS += \ --disable-notify \ --disable-projectm \ --disable-schroedinger \ - --disable-secret \ --disable-soxr \ --disable-shine \ --disable-shout \ @@ -338,6 +337,13 @@ else VLC_CONF_OPTS += --disable-samplerate endif +ifeq ($(BR2_PACKAGE_LIBSECRET),y) +VLC_CONF_OPTS += --enable-secret +VLC_DEPENDENCIES += libsecret +else +VLC_CONF_OPTS += --disable-secret +endif + ifeq ($(BR2_PACKAGE_LIBSSH2),y) VLC_CONF_OPTS += --enable-sftp VLC_DEPENDENCIES += libssh2 |