Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 May 2020 19:45:36 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533584 - head/security/nss
Message-ID:  <202005011945.041Jjame034222@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005011945.041Jjame034222>