82cf4f00ac
We were already removing the preloadable iconv library (that can be used through LD_PRELOAD to override the C library iconv implementation) from staging/target, but it was still built. And this causes issues in static only scenarios, so this patch changes that to not even build/install the preloadable library. [Thomas: changed Gustavo's patch to take into the fact that we never need the preloadable library.] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libiconv
|
|
#
|
|
################################################################################
|
|
|
|
LIBICONV_VERSION = 1.14
|
|
LIBICONV_SITE = $(BR2_GNU_MIRROR)/libiconv
|
|
LIBICONV_INSTALL_STAGING = YES
|
|
LIBICONV_LICENSE = GPLv3+ (iconv program), LGPLv2+ (library)
|
|
LIBICONV_LICENSE_FILES = COPYING COPYING.LIB
|
|
|
|
# Don't build the preloadable library, as we don't need it (it's only
|
|
# for LD_PRELOAD to replace glibc's iconv, but we never build libiconv
|
|
# when glibc is ued). And it causes problems for static only builds.
|
|
define LIBICONV_DISABLE_PRELOAD
|
|
$(SED) '/preload/d' $(@D)/Makefile.in
|
|
endef
|
|
LIBICONV_PRE_CONFIGURE_HOOKS += LIBICONV_DISABLE_PRELOAD
|
|
|
|
$(eval $(autotools-package))
|
|
|
|
# Configurations where the toolchain supports locales and the libiconv
|
|
# package is enabled are incorrect, because the toolchain already
|
|
# provides libiconv functionality, and having both confuses packages.
|
|
ifeq ($(BR2_PACKAGE_LIBICONV)$(BR2_ENABLE_LOCALE),yy)
|
|
$(error Libiconv should never be enabled when the toolchain supports locales. Report this failure to Buildroot developers)
|
|
endif
|