mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
samba: only require libiconv if !BR2_ENABLE_LOCALE
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
a4051d9db8
commit
0317b30912
@ -1,6 +1,6 @@
|
|||||||
config BR2_PACKAGE_SAMBA
|
config BR2_PACKAGE_SAMBA
|
||||||
bool "samba"
|
bool "samba"
|
||||||
select BR2_PACKAGE_LIBICONV
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||||
help
|
help
|
||||||
Provides print services to all manner of SMB/CIFS clients,
|
Provides print services to all manner of SMB/CIFS clients,
|
||||||
including the numerous versions of Microsoft Windows
|
including the numerous versions of Microsoft Windows
|
||||||
|
@ -16,7 +16,7 @@ SAMBA_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
|
|
||||||
SAMBA_DEPENDENCIES = \
|
SAMBA_DEPENDENCIES = \
|
||||||
libiconv \
|
$(if $(BR2_ENABLE_LOCALE),,libiconv) \
|
||||||
$(if $(BR2_PACKAGE_SAMBA_RPCCLIENT),readline) \
|
$(if $(BR2_PACKAGE_SAMBA_RPCCLIENT),readline) \
|
||||||
$(if $(BR2_PACKAGE_SAMBA_SMBCLIENT),readline) \
|
$(if $(BR2_PACKAGE_SAMBA_SMBCLIENT),readline) \
|
||||||
$(if $(BR2_PACKAGE_SAMBA_AVAHI),avahi) \
|
$(if $(BR2_PACKAGE_SAMBA_AVAHI),avahi) \
|
||||||
|
Loading…
Reference in New Issue
Block a user