From owner-svn-ports-all@freebsd.org Tue Feb 28 12:28:25 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56669CEF92E; Tue, 28 Feb 2017 12:28:25 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1AB8AED8; Tue, 28 Feb 2017 12:28:25 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SCSOFB034123; Tue, 28 Feb 2017 12:28:24 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SCSOQC034122; Tue, 28 Feb 2017 12:28:24 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201702281228.v1SCSOQC034122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 28 Feb 2017 12:28:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r435050 - in branches/2017Q1/security/libgcrypt: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2017 12:28:25 -0000 Author: cpm Date: Tue Feb 28 12:28:24 2017 New Revision: 435050 URL: https://svnweb.freebsd.org/changeset/ports/435050 Log: MFH: r435049 security/libgcrypt: fix build on aarch64 libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I../src -I../src -Wa,--noexecstack -O2 -pipe -fno-strict-aliasing -std=gnu89 -MT cipher-gcm-armv8-aarch64-ce.lo -MD -MP -MF .deps/cipher-gcm-armv8-aarch64-ce.Tpo -c cipher-gcm-armv8-aarch64-ce.S -fPIC -DPIC -o .libs/cipher-gcm-armv8-aarch64-ce.o cipher-gcm-armv8-aarch64-ce.S:190:3: error: instruction requires: neon eor v31.16b, v31.16b, v31.16b ^ PR: 217271 Submitted by: krion Reported by: Simon Rozman Approved by: ports-secteam (blanket) Added: branches/2017Q1/security/libgcrypt/files/ - copied from r435049, head/security/libgcrypt/files/ Modified: branches/2017Q1/security/libgcrypt/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/security/libgcrypt/Makefile ============================================================================== --- branches/2017Q1/security/libgcrypt/Makefile Tue Feb 28 12:21:13 2017 (r435049) +++ branches/2017Q1/security/libgcrypt/Makefile Tue Feb 28 12:28:24 2017 (r435050) @@ -33,6 +33,10 @@ OPTIONS_DEFINE= DOCS .include +.if ${ARCH} == "armv6" || ${ARCH} == "aarch64" +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-aarch64 +.endif + .if ${ARCH} == "powerpc" CONFIGURE_ARGS+= --disable-asm .endif