e2bd1ce789
configure.ac has AM_GNU_GETTEXT(), which will enable i18n if a gettext library is found. For uClibc, it is found if the gettext package has been built, and it will add -lintl to the link flags. For musl and glibc, it is always found, in libc itself so nothing is added to the link flags. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Matthew Weber <matt@thewebers.ws> Tested-by: Matthew Weber <matt@thewebers.ws> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
847 B
Makefile
28 lines
847 B
Makefile
################################################################################
|
|
#
|
|
# libgpg-error
|
|
#
|
|
################################################################################
|
|
|
|
LIBGPG_ERROR_VERSION = 1.24
|
|
LIBGPG_ERROR_SITE = ftp://ftp.gnupg.org/gcrypt/libgpg-error
|
|
LIBGPG_ERROR_LICENSE = GPLv2+, LGPLv2.1+
|
|
LIBGPG_ERROR_LICENSE_FILES = COPYING COPYING.LIB
|
|
LIBGPG_ERROR_INSTALL_STAGING = YES
|
|
LIBGPG_ERROR_CONFIG_SCRIPTS = gpg-error-config
|
|
|
|
ifeq ($(BR2_PACKAGE_GETTEXT),y)
|
|
LIBGPG_ERROR_DEPENDENCIES += gettext
|
|
endif
|
|
|
|
define LIBGPG_ERROR_FIX_CROSS_COMPILATION
|
|
cd $(@D)/src/syscfg && \
|
|
ln -s lock-obj-pub.$(call qstrip, $(BR2_PACKAGE_LIBGPG_ERROR_SYSCFG)).h \
|
|
lock-obj-pub.$(GNU_TARGET_NAME).h
|
|
endef
|
|
LIBGPG_ERROR_PRE_CONFIGURE_HOOKS += LIBGPG_ERROR_FIX_CROSS_COMPILATION
|
|
|
|
LIBGPG_ERROR_CONF_OPTS = --disable-tests
|
|
|
|
$(eval $(autotools-package))
|