Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/diffutils/files/
Date: Mon, 21 Jan 2019 11:38:04
Message-Id: 1548070662.2bcf6d23ea329e863c2431f5f0098769f6d144c4.polynomial-c@gentoo
1 commit: 2bcf6d23ea329e863c2431f5f0098769f6d144c4
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 7 15:09:10 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 21 11:37:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bcf6d23
7
8 sys-apps/diffutils: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/10763
12 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
13
14 .../diffutils/files/diffutils-3.5-fix_macros.patch | 19 -------------------
15 1 file changed, 19 deletions(-)
16
17 diff --git a/sys-apps/diffutils/files/diffutils-3.5-fix_macros.patch b/sys-apps/diffutils/files/diffutils-3.5-fix_macros.patch
18 deleted file mode 100644
19 index ae820fc372c..00000000000
20 --- a/sys-apps/diffutils/files/diffutils-3.5-fix_macros.patch
21 +++ /dev/null
22 @@ -1,19 +0,0 @@
23 -http://git.savannah.gnu.org/cgit/gnulib.git/commit/lib/intprops.h?id=175b4e22f99e00996b72f822f5ae54dca8243d19
24 -
25 ---- diffutils-3.5/lib/intprops.h
26 -+++ diffutils-3.5/lib/intprops.h
27 -@@ -230,11 +230,11 @@
28 - (e.g., A and B) have the same type as MIN and MAX. Instead, they assume
29 - that the result (e.g., A + B) has that type. */
30 - #if _GL_HAS_BUILTIN_OVERFLOW_WITH_NULL
31 --# define _GL_ADD_OVERFLOW(a, b, min, max)
32 -+# define _GL_ADD_OVERFLOW(a, b, min, max) \
33 - __builtin_add_overflow (a, b, (__typeof__ ((a) + (b)) *) 0)
34 --# define _GL_SUBTRACT_OVERFLOW(a, b, min, max)
35 -+# define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \
36 - __builtin_sub_overflow (a, b, (__typeof__ ((a) - (b)) *) 0)
37 --# define _GL_MULTIPLY_OVERFLOW(a, b, min, max)
38 -+# define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \
39 - __builtin_mul_overflow (a, b, (__typeof__ ((a) * (b)) *) 0)
40 - #else
41 - # define _GL_ADD_OVERFLOW(a, b, min, max) \