svn commit: r566771 - head/security/nss

Mikael Urankar mikael at FreeBSD.org
Sun Feb 28 15:05:56 UTC 2021


Author: mikael
Date: Sun Feb 28 15:05:56 2021
New Revision: 566771
URL: https://svnweb.freebsd.org/changeset/ports/566771

Log:
  security/nss: Fix build on armv6
  
  PR:		250956
  Submitted by:	Sean Rees

Modified:
  head/security/nss/Makefile

Modified: head/security/nss/Makefile
==============================================================================
--- head/security/nss/Makefile	Sun Feb 28 14:41:55 2021	(r566770)
+++ head/security/nss/Makefile	Sun Feb 28 15:05:56 2021	(r566771)
@@ -60,6 +60,10 @@ BINS=		${DIST}/${OPSYS}${OSREL}_OPT.OBJ
 BINS=		${DIST}/${OPSYS}${OSREL}_DBG.OBJ
 .endif
 
+.if ${ARCH} == armv6
+MAKE_ENV+=	NSS_DISABLE_ARM32_NEON=1
+.endif
+
 .if ${ARCH} == powerpc64 || ${ARCH} == powerpc
 EXTRA_PATCHES=	${FILESDIR}/${ARCH}${PPC_ABI:tl}-lib_freebl_scripts_gen.sh
 USES+=		compiler:c++11-lang # -mcrypto -mvsx


More information about the svn-ports-all mailing list