diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-12 22:29:18 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-16 12:00:30 +0200 |
commit | b5488b00dac91a1ffe323a02c6c9eea6dc07ec1e (patch) | |
tree | 19afa9e88ef55b0cceec2688c4c6aa2eae74ed33 | |
parent | b63c3af947b2a8e8f63ffd52fe2b401b3b227cb2 (diff) | |
download | buildroot-b5488b00dac91a1ffe323a02c6c9eea6dc07ec1e.tar.gz buildroot-b5488b00dac91a1ffe323a02c6c9eea6dc07ec1e.zip |
package/vlc: add optional dependency to samba4
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 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index ecc5c6cafe..14fe3b7861 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -387,6 +387,13 @@ else VLC_CONF_OPTS += --disable-sdl-image endif +ifeq ($(BR2_PACKAGE_SAMBA4),y) +VLC_CONF_OPTS += --enable-smbclient +VLC_DEPENDENCIES += samba4 +else +VLC_CONF_OPTS += --disable-smbclient +endif + ifeq ($(BR2_PACKAGE_SPEEX)$(BR2_PACKAGE_SPEEXDSP),yy) VLC_CONF_OPTS += --enable-speex VLC_DEPENDENCIES += speex speexdsp |