From owner-svn-ports-head@freebsd.org Tue Mar 31 07:48:12 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7E0FD27B034; Tue, 31 Mar 2020 07:48:12 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48s1f34BFHz40Fw; Tue, 31 Mar 2020 07:48:10 +0000 (UTC) (envelope-from mikael@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3EBA958C6; Tue, 31 Mar 2020 07:48:01 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02V7m0SC096773; Tue, 31 Mar 2020 07:48:00 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02V7m0tJ096772; Tue, 31 Mar 2020 07:48:00 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202003310748.02V7m0tJ096772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Tue, 31 Mar 2020 07:48:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529954 - head/security/libgcrypt/files X-SVN-Group: ports-head X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: head/security/libgcrypt/files X-SVN-Commit-Revision: 529954 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Mar 2020 07:48:12 -0000 Author: mikael Date: Tue Mar 31 07:48:00 2020 New Revision: 529954 URL: https://svnweb.freebsd.org/changeset/ports/529954 Log: security/libgcrypt: fix build on aarch64 with lld10 import upstream fix: https://github.com/gpg/libgcrypt/commit/09c27280cc09798d15369b3a143036b7ab5ddd69 PR: 244848 Submitted by: Charlie Li Approved by: cpm (maintainer timeout), manu (mentor, implicit) Added: head/security/libgcrypt/files/patch-cipher_camellia-aarch64.S (contents, props changed) Added: head/security/libgcrypt/files/patch-cipher_camellia-aarch64.S ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libgcrypt/files/patch-cipher_camellia-aarch64.S Tue Mar 31 07:48:00 2020 (r529954) @@ -0,0 +1,31 @@ +https://github.com/gpg/libgcrypt/commit/09c27280cc09798d15369b3a143036b7ab5ddd69 + + +From 09c27280cc09798d15369b3a143036b7ab5ddd69 Mon Sep 17 00:00:00 2001 +From: Jussi Kivilinna +Date: Mon, 14 Jan 2019 22:14:24 +0200 +Subject: [PATCH] camellia-aarch64: do not export look-up table globally + +* cipher/camellia-aarch64.S (_gcry_camellia_arm_tables): Remove +'.globl' export. +-- + +Reported-by: Martin Husemann +GnuPG-bug-id: 4317 +Signed-off-by: Jussi Kivilinna +--- + cipher/camellia-aarch64.S | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/cipher/camellia-aarch64.S b/cipher/camellia-aarch64.S +index b0e9a033..5c6ab020 100644 +--- cipher/camellia-aarch64.S.orig 2020-03-18 18:23:07.296876000 +0100 ++++ cipher/camellia-aarch64.S 2020-03-18 18:23:17.378524000 +0100 +@@ -284,7 +284,6 @@ _gcry_camellia_arm_decrypt_block: + .size _gcry_camellia_arm_decrypt_block,.-_gcry_camellia_arm_decrypt_block; + + /* Encryption/Decryption tables */ +-.globl _gcry_camellia_arm_tables + .type _gcry_camellia_arm_tables,@object; + .balign 32 + _gcry_camellia_arm_tables: