mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
update to 3.13.2
This commit is contained in:
parent
ac38b7b7ad
commit
a966a05ace
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291954
@ -9,7 +9,7 @@ PORTNAME= ca_root_nss
|
||||
PORTVERSION= ${VERSION_NSS}
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
||||
MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_WITH_CKBI_${CKBI_VER:S/./_/}_RTM/src
|
||||
MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_RTM/src
|
||||
DISTNAME= nss-${VERSION_NSS}${NSS_SUFFIX}
|
||||
|
||||
MAINTAINER= gecko@FreeBSD.org
|
||||
@ -28,10 +28,8 @@ PLIST_SUB+= CERTDIR=${CERTDIR}
|
||||
# !!! www/apache13-modssl. Please DO NOT submit patches for !!!
|
||||
# !!! new versions until they have been committed there first. !!!
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
VERSION_NSS= 3.13.1
|
||||
CKBI_VER= 1.88
|
||||
VERSION_NSS= 3.13.2
|
||||
VERSION_APACHE= 1.3.41
|
||||
NSS_SUFFIX= .with.ckbi.${CKBI_VER}
|
||||
CERTDATA_TXT_PATH= nss-${VERSION_NSS}/mozilla/security/nss/lib/ckfw/builtins/certdata.txt
|
||||
BUNDLE_PROCESSOR= MAca-bundle.pl
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (nss-3.13.1.with.ckbi.1.88.tar.gz) = 456fd2ad036976660ae7e4e24edddc49f2f47e7ca490c1c5372771bbb5207879
|
||||
SIZE (nss-3.13.1.with.ckbi.1.88.tar.gz) = 6065634
|
||||
SHA256 (nss-3.13.2.tar.gz) = 92eafdbb62e3071afe71beeaca94c9f33b0b8d11654cbf1797c84aa9f7c1c8e5
|
||||
SIZE (nss-3.13.2.tar.gz) = 6082528
|
||||
|
@ -7,11 +7,10 @@
|
||||
|
||||
PORTNAME= nss
|
||||
PORTVERSION= ${_MAJOR}.${_MINOR}.${_PATCH}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= ${MASTER_SITE_MOZILLA}
|
||||
MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_WITH_CKBI_${CKBI_VER:S/./_/}_RTM/src
|
||||
DISTNAME= nss-${PORTVERSION}.with.ckbi.${CKBI_VER}
|
||||
MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_RTM/src
|
||||
DISTNAME= nss-${PORTVERSION}
|
||||
|
||||
MAINTAINER= gecko@FreeBSD.org
|
||||
COMMENT= Libraries to support development of security-enabled applications
|
||||
@ -23,9 +22,7 @@ LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \
|
||||
|
||||
_MAJOR= 3
|
||||
_MINOR= 13
|
||||
_PATCH= 1
|
||||
|
||||
CKBI_VER= 1.88
|
||||
_PATCH= 2
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/mozilla/security/nss
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (nss-3.13.1.with.ckbi.1.88.tar.gz) = 456fd2ad036976660ae7e4e24edddc49f2f47e7ca490c1c5372771bbb5207879
|
||||
SIZE (nss-3.13.1.with.ckbi.1.88.tar.gz) = 6065634
|
||||
SHA256 (nss-3.13.2.tar.gz) = 92eafdbb62e3071afe71beeaca94c9f33b0b8d11654cbf1797c84aa9f7c1c8e5
|
||||
SIZE (nss-3.13.2.tar.gz) = 6082528
|
||||
|
@ -1,23 +0,0 @@
|
||||
Taken from here:
|
||||
https://bug702090.bugzilla.mozilla.org/attachment.cgi?id=575453
|
||||
|
||||
--- ../../security/nss/lib/util/pkcs11n.h.orig 2011-09-14 10:21:10.000000000 +0900
|
||||
+++ ../../security/nss/lib/util/pkcs11n.h 2011-11-19 00:45:01.131860104 +0900
|
||||
@@ -346,7 +346,7 @@
|
||||
* labels have never been accurate to what was really implemented.
|
||||
* The new labels correctly reflect what the values effectively mean.
|
||||
*/
|
||||
-#if __GNUC__ > 3
|
||||
+#if defined(__GNUC__) && (__GNUC__ > 3)
|
||||
/* make GCC warn when we use these #defines */
|
||||
/*
|
||||
* This is really painful because GCC doesn't allow us to mark random
|
||||
@@ -362,7 +362,7 @@
|
||||
* cast the resulting value to the deprecated type in the #define, thus
|
||||
* producting the warning when the #define is used.
|
||||
*/
|
||||
-#if (__GNUC__ == 4) && (__GNUC_MINOR < 5)
|
||||
+#if (__GNUC__ == 4) && (__GNUC_MINOR__ < 5)
|
||||
/* The mac doesn't like the friendlier deprecate messages. I'm assuming this
|
||||
* is a gcc version issue rather than mac or ppc specific */
|
||||
typedef CK_TRUST __CKT_NSS_UNTRUSTED __attribute__((deprecated));
|
@ -81,17 +81,14 @@
|
||||
|
||||
--- lib/softoken/legacydb/config.mk.orig 2009-08-31 12:39:49.000000000 +0200
|
||||
+++ lib/softoken/legacydb/config.mk 2009-08-31 12:40:03.000000000 +0200
|
||||
@@ -40,10 +40,6 @@
|
||||
@@ -40,7 +40,6 @@
|
||||
|
||||
EXTRA_LIBS += $(CRYPTOLIB)
|
||||
EXTRA_LIBS += \
|
||||
$(CRYPTOLIB) \
|
||||
- $(DIST)/lib/$(LIB_PREFIX)dbm.$(LIB_SUFFIX) \
|
||||
$(NULL)
|
||||
|
||||
-ifndef NSS_DISABLE_DBM
|
||||
-EXTRA_LIBS += $(DIST)/lib/$(LIB_PREFIX)dbm.$(LIB_SUFFIX)
|
||||
-endif
|
||||
-
|
||||
# can't do this in manifest.mn because OS_TARGET isn't defined there.
|
||||
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
|
||||
|
||||
--- lib/certdb/xauthkid.c.orig 2009-08-31 12:43:13.000000000 +0200
|
||||
+++ lib/certdb/xauthkid.c 2009-08-31 12:44:21.000000000 +0200
|
||||
@@ -39,7 +39,7 @@
|
||||
|
Loading…
Reference in New Issue
Block a user