20b2199d30
On some architectures (found on x86_64, but probably others too), libnspr builds with -m32 unless it is configured for 64-bit build. So force 64-bit build on 64-bit architectures. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
731 B
Makefile
20 lines
731 B
Makefile
#############################################################
|
|
#
|
|
# libnspr
|
|
#
|
|
#############################################################
|
|
LIBNSPR_VERSION = 4.8.7
|
|
LIBNSPR_SOURCE = nspr-$(LIBNSPR_VERSION).tar.gz
|
|
LIBNSPR_SITE = https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v$(LIBNSPR_VERSION)/src/
|
|
LIBNSPR_SUBDIR = mozilla/nsprpub
|
|
LIBNSPR_INSTALL_STAGING = YES
|
|
# Set the host CFLAGS and LDFLAGS so NSPR does not guess wrongly
|
|
LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \
|
|
HOST_LDFLAGS="-lc"
|
|
# NSPR mixes up --build and --host
|
|
LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
|
|
LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit
|
|
LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6
|
|
|
|
$(eval $(autotools-package))
|