linux-pam: use the 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 - using TARGET_NLS_LIBS to force linking against libintl - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
3430b9997c
commit
aa9a082a3d
@ -4,7 +4,6 @@ config BR2_PACKAGE_LINUX_PAM
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on !BR2_TOOLCHAIN_USES_MUSL
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
select BR2_PACKAGE_FLEX
|
||||
help
|
||||
A Security Framework that Provides Authentication for Applications
|
||||
|
@ -16,15 +16,12 @@ LINUX_PAM_CONF_OPTS = \
|
||||
--disable-regenerate-docu \
|
||||
--enable-securedir=/lib/security \
|
||||
--libdir=/lib
|
||||
LINUX_PAM_DEPENDENCIES = flex host-flex host-pkgconf
|
||||
LINUX_PAM_DEPENDENCIES = flex host-flex host-pkgconf \
|
||||
$(TARGET_NLS_DEPENDENCIES)
|
||||
LINUX_PAM_AUTORECONF = YES
|
||||
LINUX_PAM_LICENSE = BSD-3-Clause
|
||||
LINUX_PAM_LICENSE_FILES = Copyright
|
||||
|
||||
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
||||
LINUX_PAM_DEPENDENCIES += gettext
|
||||
LINUX_PAM_MAKE_OPTS += LIBS=-lintl
|
||||
endif
|
||||
LINUX_PAM_MAKE_OPTS += LIBS=$(TARGET_NLS_LIBS)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
||||
LINUX_PAM_CONF_OPTS += --enable-selinux
|
||||
|
Loading…
Reference in New Issue
Block a user