summaryrefslogtreecommitdiff
path: root/package/kodi
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-02 09:12:46 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-02-02 14:03:32 +0100
commit81863eafc762309a2700f90b895ac0bc2cb93a79 (patch)
treec9e65a5eecc0c0606604878c57fe2ab442ce7dea /package/kodi
parent85a28f392783cf6b80881be02609c6df460e1dab (diff)
kodi, mpd: fix samba4 related dependency mistakes
This commit fixes the following kconfig warning: warning: (BR2_PACKAGE_KODI_LIBSMBCLIENT && BR2_PACKAGE_MPD_LIBSMBCLIENT) selects BR2_PACKAGE_SAMBA4 which has unmet direct dependencies (!BR2_PACKAGE_SAMBA && BR2_USE_MMU && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_NATIVE_RPC && BR2_TOOLCHAIN_HAS_THREADS && !BR2_STATIC_LIBS && !BR2_nios2) by updating the kodi and mpd Config.in files to properly take into account the dependencies of the BR2_PACKAGE_SAMBA4 option that they select. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/kodi')
-rw-r--r--package/kodi/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index e697b52d2..a657f5baf 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -208,12 +208,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
+comment "samba support needs an (e)glibc toolchain w/ RPC"
+ depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_TOOLCHAIN_HAS_NATIVE_RPC
config BR2_PACKAGE_KODI_LIBSMBCLIENT
bool "samba"
depends on BR2_TOOLCHAIN_USES_GLIBC
+ depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
select BR2_PACKAGE_SAMBA4
help
Enable Samba support