svn commit: r531847 - head/security/nss

Piotr Kubaj pkubaj at FreeBSD.org
Thu Apr 16 14:05:44 UTC 2020


Author: pkubaj
Date: Thu Apr 16 14:05:43 2020
New Revision: 531847
URL: https://svnweb.freebsd.org/changeset/ports/531847

Log:
  security/nss: go back to using clang on powerpc64 where available
  
  head r359981 and r359994 reverted commits that caused clang to run in infinite loop, allocating all available memory and crashing the system.

Modified:
  head/security/nss/Makefile

Modified: head/security/nss/Makefile
==============================================================================
--- head/security/nss/Makefile	Thu Apr 16 12:41:13 2020	(r531846)
+++ head/security/nss/Makefile	Thu Apr 16 14:05:43 2020	(r531847)
@@ -3,6 +3,7 @@
 
 PORTNAME=	nss
 PORTVERSION=	3.51.1
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src
 
@@ -57,7 +58,7 @@ BINS=		${DIST}/${OPSYS}${OSREL}_DBG.OBJ
 .endif
 
 .if ${ARCH} == powerpc64
-USE_GCC=	yes
+USES+=		compiler:c++11-lang # -mcrypto -mvsx
 .else
 MAKE_ENV+=	NSS_DISABLE_ALTIVEC=1
 .endif


More information about the svn-ports-all mailing list