Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/gearmand/
Date: Mon, 05 Oct 2015 16:43:58
Message-Id: 1444063421.d7735a14ce260b2d8cc8b004949169ee2a27d272.mgorny@gentoo
1 commit: d7735a14ce260b2d8cc8b004949169ee2a27d272
2 Author: Szpadel <piotrekrogowski <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 29 08:44:19 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 5 16:43:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7735a14
7
8 sys-cluster/gearmand: Add -std=c++11 flag, bug #503538
9
10 Fixes: https://bugs.gentoo.org/show_bug.cgi?id=503538
11 Pull-Request: https://github.com/gentoo/gentoo/pull/142
12
13 sys-cluster/gearmand/gearmand-0.34-r1.ebuild | 3 +++
14 1 file changed, 3 insertions(+)
15
16 diff --git a/sys-cluster/gearmand/gearmand-0.34-r1.ebuild b/sys-cluster/gearmand/gearmand-0.34-r1.ebuild
17 index 9a36a6c..54ce112 100644
18 --- a/sys-cluster/gearmand/gearmand-0.34-r1.ebuild
19 +++ b/sys-cluster/gearmand/gearmand-0.34-r1.ebuild
20 @@ -52,6 +52,9 @@ src_configure() {
21 append-cppflags -DDEBUG
22 fi
23
24 + # Explicitly enable c++11 mode
25 + append-cxxflags -std=c++11
26 +
27 autotools-utils_src_configure
28 }