From: Gustavo Zacarias Date: Fri, 6 Mar 2015 12:50:31 +0000 (-0300) Subject: kodi: switch smb support to samba4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc6b46d1bacb03ebcec5196449c6aaf66bf42fb6;p=buildroot.git kodi: switch smb support to samba4 samba3 is deprecated upstream. Signed-off-by: Gustavo Zacarias Tested-by: "Yann E. MORIN" Acked-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/kodi/Config.in b/package/kodi/Config.in index 1f98267f48..a0cbb18660 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -202,10 +202,13 @@ config BR2_PACKAGE_KODI_LIBSHAIRPLAY comment "shairport support needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS +comment "samba support needs an (e)glibc toolchain" + depends on !BR2_TOOLCHAIN_USES_GLIBC + config BR2_PACKAGE_KODI_LIBSMBCLIENT bool "samba" - select BR2_PACKAGE_SAMBA - select BR2_PACKAGE_SAMBA_LIBSMBCLIENT + depends on BR2_TOOLCHAIN_USES_GLIBC + select BR2_PACKAGE_SAMBA4 help Enable Samba support diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index ca8563dd10..ad73dcbc11 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -140,7 +140,7 @@ KODI_CONF_OPTS += --disable-webserver endif ifeq ($(BR2_PACKAGE_KODI_LIBSMBCLIENT),y) -KODI_DEPENDENCIES += samba +KODI_DEPENDENCIES += samba4 KODI_CONF_OPTS += --enable-samba else KODI_CONF_OPTS += --disable-samba