Commit 6cfba491 authored by Will Newton's avatar Will Newton Committed by Peter Korsgaard
Browse files

package: add libnspr



Add a package for the Netscape Portable Runtime library.

Signed-off-by: default avatarWill Newton <will.newton@imgtec.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent f4889573
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -338,6 +338,7 @@ source "package/libelf/Config.in"
source "package/libevent/Config.in"
source "package/libffi/Config.in"
source "package/libglib2/Config.in"
source "package/libnspr/Config.in"
source "package/liboil/Config.in"
source "package/libsigc/Config.in"
source "package/startup-notification/Config.in"
+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBNSPR
	bool "libnspr"
	depends on BR2_LARGEFILE
	help
	  NSPR is the Netscape Portable Runtime library which provides
	  a platform-neutral API for system level and libc like
	  functions. The library is used by the Mozilla project as well
	  as others.

	  http://www.mozilla.org/projects/nspr/

comment "libnspr requires a toolchain with LARGEFILE support"
	depends on !BR2_LARGEFILE
+17 −0
Original line number Diff line number Diff line
#############################################################
#
# 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)

$(eval $(call AUTOTARGETS,package,libnspr))