Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
Date: Wed, 16 Dec 2015 17:34:41
Message-Id: 1450287435.77b83b512601cabd6160e39fc7dcff18c2660b11.blueness@gentoo
1 commit: 77b83b512601cabd6160e39fc7dcff18c2660b11
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 16 17:37:15 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 16 17:37:15 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77b83b51
7
8 net-p2p/litecoind: fix executable GNU stack.
9
10 Package-Manager: portage-2.2.24
11
12 net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild | 5 ++++-
13 1 file changed, 4 insertions(+), 1 deletion(-)
14
15 diff --git a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
16 index 9c14a51..c7f7068 100644
17 --- a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
18 +++ b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
19 @@ -6,7 +6,7 @@ EAPI=5
20
21 DB_VER="4.8"
22
23 -inherit autotools db-use eutils systemd user
24 +inherit autotools db-use eutils flag-o-matic systemd user
25
26 MyPV="${PV/_/-}"
27 MyPN="litecoin"
28 @@ -51,6 +51,9 @@ src_prepare() {
29 }
30
31 src_configure() {
32 + # To avoid executable GNU stack.
33 + append-ldflags -Wl,-z,noexecstack
34 +
35 local my_econf=
36 if use upnp; then
37 my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"