Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Mar 2020 07:48:00 +0000 (UTC)
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529954 - head/security/libgcrypt/files
Message-ID:  <202003310748.02V7m0tJ096772@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <jussi.kivilinna@iki.fi>
+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 <martin@NetBSD.org>
+GnuPG-bug-id: 4317
+Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
+---
+ 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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003310748.02V7m0tJ096772>