svn commit: r533585 - branches/2020Q2/security/nss
Jan Beich
jbeich at FreeBSD.org
Fri May 1 19:46:12 UTC 2020
Author: jbeich
Date: Fri May 1 19:46:12 2020
New Revision: 533585
URL: https://svnweb.freebsd.org/changeset/ports/533585
Log:
MFH: r533584
security/nss: disable -Werror due to -Wall mine
blinit.c:122:24: error: unused variable 'getauxval' [-Werror,-Wunused-variable]
static unsigned long (*getauxval)(unsigned long) = NULL;
^
pqg.c:345:16: error: comparison of constant 18446744073709551615 with expression of type 'unsigned long' is always true [-Werror,-Wtautological-constant-out-of-range-compare]
if (addend < MP_DIGIT_MAX) {
~~~~~~ ^ ~~~~~~~~~~~~
PR: 242523
Approved by: ports-secteam blanket
Modified:
branches/2020Q2/security/nss/Makefile
Directory Properties:
branches/2020Q2/ (props changed)
Modified: branches/2020Q2/security/nss/Makefile
==============================================================================
--- branches/2020Q2/security/nss/Makefile Fri May 1 19:45:36 2020 (r533584)
+++ branches/2020Q2/security/nss/Makefile Fri May 1 19:46:12 2020 (r533585)
@@ -29,6 +29,7 @@ USE_PERL5= build
MAKE_ENV= LIBRARY_PATH="${LOCALBASE}/lib" \
SQLITE_INCLUDE_DIR="${LOCALBASE}/include" \
FREEBL_LOWHASH=1 \
+ NSS_ENABLE_WERROR=0 \
NSS_DISABLE_GTESTS=1 \
NSS_USE_SYSTEM_SQLITE=1
CFLAGS+= -I${LOCALBASE}/include/nspr -Wno-error=unused-function
More information about the svn-ports-branches
mailing list