mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
dnsmasq: use new gettext logic
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
9494e46a07
commit
388bb94b3d
@ -31,7 +31,6 @@ config BR2_PACKAGE_DNSMASQ_IDN
|
||||
bool "IDN support"
|
||||
depends on BR2_USE_WCHAR
|
||||
select BR2_PACKAGE_LIBIDN
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
help
|
||||
Enable IDN support in dnsmasq.
|
||||
This option is a big space taker since it pulls in many
|
||||
|
@ -32,8 +32,8 @@ endif
|
||||
|
||||
# NLS requires IDN so only enable it (i18n) when IDN is true
|
||||
ifeq ($(BR2_PACKAGE_DNSMASQ_IDN),y)
|
||||
DNSMASQ_DEPENDENCIES += libidn $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-gettext
|
||||
DNSMASQ_MAKE_OPTS += LIBS+="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)"
|
||||
DNSMASQ_DEPENDENCIES += libidn $(TARGET_NLS_DEPENDENCIES)
|
||||
DNSMASQ_MAKE_OPTS += LIBS+=$(TARGET_NLS_LIBS)
|
||||
DNSMASQ_COPTS += -DHAVE_IDN
|
||||
DNSMASQ_I18N = $(if $(BR2_ENABLE_LOCALE),-i18n)
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user