svn commit: r533584 - head/security/nss

Jan Beich jbeich at FreeBSD.org
Fri May 1 19:45:37 UTC 2020


Author: jbeich
Date: Fri May  1 19:45:36 2020
New Revision: 533584
URL: https://svnweb.freebsd.org/changeset/ports/533584

Log:
  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

Modified:
  head/security/nss/Makefile   (contents, props changed)

Modified: head/security/nss/Makefile
==============================================================================
--- head/security/nss/Makefile	Fri May  1 19:39:26 2020	(r533583)
+++ head/security/nss/Makefile	Fri May  1 19:45:36 2020	(r533584)
@@ -30,6 +30,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-all mailing list