diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-03-09 10:36:32 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-03-16 13:13:21 +0100 |
commit | cebaa7f6863e05f05864a7a919cdb6fb21a88cc4 (patch) | |
tree | 6923e62e23d3392fff6d2636813c7280b928b716 /dev-libs/libgcrypt | |
parent | app-shells/bash: remove unused patch (diff) | |
download | gentoo-cebaa7f6863e05f05864a7a919cdb6fb21a88cc4.tar.gz gentoo-cebaa7f6863e05f05864a7a919cdb6fb21a88cc4.tar.bz2 gentoo-cebaa7f6863e05f05864a7a919cdb6fb21a88cc4.zip |
dev-libs/libgcrypt: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-libs/libgcrypt')
-rw-r--r-- | dev-libs/libgcrypt/files/libgcrypt-1.10.1-fix-no-asm-hppa.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/libgcrypt/files/libgcrypt-1.10.1-fix-no-asm-hppa.patch b/dev-libs/libgcrypt/files/libgcrypt-1.10.1-fix-no-asm-hppa.patch deleted file mode 100644 index e665749db3a5..000000000000 --- a/dev-libs/libgcrypt/files/libgcrypt-1.10.1-fix-no-asm-hppa.patch +++ /dev/null @@ -1,35 +0,0 @@ -https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commitdiff;h=c0692324fe8b3806eefc5017767917dca9cd94d0 -https://dev.gnupg.org/T5976 -https://bugs.gentoo.org/832871 - -From c0692324fe8b3806eefc5017767917dca9cd94d0 Mon Sep 17 00:00:00 2001 -From: NIIBE Yutaka <gniibe@fsij.org> -Date: Tue, 17 May 2022 10:44:55 +0900 -Subject: [PATCH] mpi: Allow building with --disable-asm for HPPA. - -* mpi/longlong.h [__hppa] (udiv_qrnnd): Only define -when assembler is enabled. - --- - -GnuPG-bug-id: 5976 -Signed-off-by: NIIBE Yutaka <gniibe@fsij.org> ---- a/mpi/longlong.h -+++ b/mpi/longlong.h -@@ -430,14 +430,14 @@ extern UDItype __udiv_qrnnd (); - # define UMUL_TIME 40 - # define UDIV_TIME 80 - # endif --# ifndef LONGLONG_STANDALONE -+# if !defined(LONGLONG_STANDALONE) && !defined(ASM_DISABLED) - # define udiv_qrnnd(q, r, n1, n0, d) \ - do { USItype __r; \ - (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \ - (r) = __r; \ - } while (0) - extern USItype __udiv_qrnnd (); --# endif /* !LONGLONG_STANDALONE */ -+# endif /* !LONGLONG_STANDALONE && !ASM_DISABLED */ - # define count_leading_zeros(count, x) \ - do { \ - USItype __tmp; \ |