svn commit: r569290 - head/security/libgcrypt

Cy Schubert cy at FreeBSD.org
Sat Mar 27 02:55:45 UTC 2021


Author: cy
Date: Sat Mar 27 02:55:44 2021
New Revision: 569290
URL: https://svnweb.freebsd.org/changeset/ports/569290

Log:
  security/libgcrypt: Fix armv7 build
  
  Similar to armv6, armv7 fails to build jitterentropy-base.c without
  optimization, falling flat on the #pragma GCC optimize statement.
  Like armv6, avoid building jitterentropy-base.c altogether.
  
  PR:		253698

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

Modified: head/security/libgcrypt/Makefile
==============================================================================
--- head/security/libgcrypt/Makefile	Sat Mar 27 02:52:44 2021	(r569289)
+++ head/security/libgcrypt/Makefile	Sat Mar 27 02:55:44 2021	(r569290)
@@ -39,7 +39,7 @@ OPTIONS_DEFINE=	DOCS
 CONFIGURE_ARGS+=	--disable-asm
 .endif
 
-.if ${ARCH} == "armv6"
+.if ${ARCH} == "armv6" || ${ARCH} == "armv7"
 CONFIGURE_ARGS+=	--disable-jent-support
 .endif
 


More information about the svn-ports-head mailing list