Date: Mon, 10 Feb 2020 23:51:09 +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: r525766 - head/security/nss Message-ID: <202002102351.01ANp9Fu099369@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Feb 10 23:51:09 2020 New Revision: 525766 URL: https://svnweb.freebsd.org/changeset/ports/525766 Log: security/nss: disable AltiVec on 32-bit powerpc Crypto acceleration is only implemented for powerpc64 but build flags leak to other powerpc targets. Disable via a variable introduced in 3.50. PR: 242523 Reported by: many Modified: head/security/nss/Makefile (contents, props changed) Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Mon Feb 10 23:50:25 2020 (r525765) +++ head/security/nss/Makefile Mon Feb 10 23:51:09 2020 (r525766) @@ -58,6 +58,8 @@ BINS= ${DIST}/${OPSYS}${OSREL}_DBG.OBJ .if ${ARCH} == powerpc64 USES+= compiler:c++11-lang # -mcrypto -mvsx +.else +MAKE_ENV+= NSS_DISABLE_ALTIVEC=1 .endif .if ${OPSYS} == FreeBSD && ${ARCH} == amd64
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002102351.01ANp9Fu099369>