Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/logrotate/files/
Date: Wed, 20 Jan 2021 23:04:55
Message-Id: 1611183880.82abdea39b819ce26a5ec385170f5b506e7d3656.conikost@gentoo
1 commit: 82abdea39b819ce26a5ec385170f5b506e7d3656
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 18 19:42:31 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 20 23:04:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82abdea3
7
8 app-admin/logrotate: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/19109
11 Package-Manager: Portage-3.0.13, Repoman-3.0.2
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 app-admin/logrotate/files/gcc-fnocommon.patch | 41 ---------------------------
16 1 file changed, 41 deletions(-)
17
18 diff --git a/app-admin/logrotate/files/gcc-fnocommon.patch b/app-admin/logrotate/files/gcc-fnocommon.patch
19 deleted file mode 100644
20 index d490c20ce0a..00000000000
21 --- a/app-admin/logrotate/files/gcc-fnocommon.patch
22 +++ /dev/null
23 @@ -1,41 +0,0 @@
24 -From 908e86191bf062711ea44c922e66d27203e90214 Mon Sep 17 00:00:00 2001
25 -From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@××××××××××.com>
26 -Date: Wed, 8 Jan 2020 10:54:53 +0100
27 -Subject: [PATCH] split declaration and definition of queue variable
28 -
29 -Support compilation with -fno-common flag, which is the default for GCC 10.
30 -
31 -Fixes: #288
32 -Closes #289
33 ----
34 - config.c | 2 ++
35 - logrotate.h | 3 ++-
36 - 2 files changed, 4 insertions(+), 1 deletion(-)
37 -
38 -diff --git a/config.c b/config.c
39 -index 0e9a828..f027c7e 100644
40 ---- a/config.c
41 -+++ b/config.c
42 -@@ -28,6 +28,8 @@
43 - #include "log.h"
44 - #include "logrotate.h"
45 -
46 -+struct logInfoHead logs;
47 -+
48 - #if !defined(GLOB_ABORTED) && defined(GLOB_ABEND)
49 - #define GLOB_ABORTED GLOB_ABEND
50 - #endif
51 -diff --git a/logrotate.h b/logrotate.h
52 -index 1c178da..6c1c2e7 100644
53 ---- a/logrotate.h
54 -+++ b/logrotate.h
55 -@@ -89,7 +89,8 @@ struct logInfo {
56 - TAILQ_ENTRY(logInfo) list;
57 - };
58 -
59 --TAILQ_HEAD(logInfoHead, logInfo) logs;
60 -+TAILQ_HEAD(logInfoHead, logInfo);
61 -+extern struct logInfoHead logs;
62 -
63 - extern int numLogs;
64 - extern int debug;