665e13c85e
Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# libnspr
|
|
#
|
|
################################################################################
|
|
|
|
LIBNSPR_VERSION = 4.10.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 = nspr
|
|
LIBNSPR_INSTALL_STAGING = YES
|
|
LIBNSPR_CONFIG_SCRIPTS = nspr-config
|
|
LIBNSPR_LICENSE = MPLv2.0
|
|
LIBNSPR_LICENSE_FILES = nspr/LICENSE
|
|
|
|
# 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_OPTS = --host=$(GNU_HOST_NAME)
|
|
LIBNSPR_CONF_OPTS += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit
|
|
LIBNSPR_CONF_OPTS += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBNSPR_MAKE_OPTS = SHARED_LIBRARY=
|
|
LIBNSPR_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) SHARED_LIBRARY= install
|
|
LIBNSPR_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) SHARED_LIBRARY= install
|
|
endif
|
|
|
|
ifeq ($(BR2_arm),y)
|
|
ifeq ($(BR2_ARM_CPU_HAS_THUMB2),y)
|
|
LIBNSPR_CONF_OPTS += --enable-thumb2
|
|
else
|
|
LIBNSPR_CONF_OPTS += --disable-thumb2
|
|
endif
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|