Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ee/, app-editors/ee/files/
Date: Sat, 09 Dec 2017 13:17:19
Message-Id: 1512825382.90eabcfdd4a2a67ba010ac25df66607c218bfa13.hattya@gentoo
1 commit: 90eabcfdd4a2a67ba010ac25df66607c218bfa13
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 9 13:14:35 2017 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 9 13:16:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90eabcfd
7
8 app-editors/ee: fix build with >=sys-libs/glibc-2.26
9
10 Closes: https://bugs.gentoo.org/638502
11 Package-Manager: Portage-2.3.13, Repoman-2.3.4
12
13 app-editors/ee/ee-1.5.2.ebuild | 1 +
14 app-editors/ee/files/ee-signal.patch | 11 +++++++++++
15 2 files changed, 12 insertions(+)
16
17 diff --git a/app-editors/ee/ee-1.5.2.ebuild b/app-editors/ee/ee-1.5.2.ebuild
18 index 0d343a67d9e..fc1aec479af 100644
19 --- a/app-editors/ee/ee-1.5.2.ebuild
20 +++ b/app-editors/ee/ee-1.5.2.ebuild
21 @@ -20,6 +20,7 @@ S="${WORKDIR}/easyedit-${PV}"
22
23 PATCHES=(
24 "${FILESDIR}"/${PN}-init-location.patch
25 + "${FILESDIR}"/${PN}-signal.patch
26 "${FILESDIR}"/${PN}-Wformat-security.patch
27 )
28 DOCS=( Changes README.${PN} ${PN}.i18n.guide ${PN}.msg )
29
30 diff --git a/app-editors/ee/files/ee-signal.patch b/app-editors/ee/files/ee-signal.patch
31 new file mode 100644
32 index 00000000000..41cfa401306
33 --- /dev/null
34 +++ b/app-editors/ee/files/ee-signal.patch
35 @@ -0,0 +1,11 @@
36 +--- a/ee.c
37 ++++ b/ee.c
38 +@@ -552,7 +552,7 @@
39 + {
40 + int counter;
41 +
42 +- for (counter = 1; counter < SIGUNUSED; counter++)
43 ++ for (counter = 1; counter < SIGSYS; counter++)
44 + signal(counter, SIG_IGN);
45 +
46 + signal(SIGCHLD, SIG_DFL);