diff options
author | Szpadel <piotrekrogowski@gmail.com> | 2015-09-29 10:44:19 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-10-05 18:43:41 +0200 |
commit | d7735a14ce260b2d8cc8b004949169ee2a27d272 (patch) | |
tree | 1928122af279b3e1af0685ce089645896121076e /sys-cluster/gearmand | |
parent | dev-libs/uriparser: Improve on QA issues (diff) | |
download | gentoo-d7735a14ce260b2d8cc8b004949169ee2a27d272.tar.gz gentoo-d7735a14ce260b2d8cc8b004949169ee2a27d272.tar.bz2 gentoo-d7735a14ce260b2d8cc8b004949169ee2a27d272.zip |
sys-cluster/gearmand: Add -std=c++11 flag, bug #503538
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=503538
Pull-Request: https://github.com/gentoo/gentoo/pull/142
Diffstat (limited to 'sys-cluster/gearmand')
-rw-r--r-- | sys-cluster/gearmand/gearmand-0.34-r1.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys-cluster/gearmand/gearmand-0.34-r1.ebuild b/sys-cluster/gearmand/gearmand-0.34-r1.ebuild index 9a36a6cab34c..54ce1120ba24 100644 --- a/sys-cluster/gearmand/gearmand-0.34-r1.ebuild +++ b/sys-cluster/gearmand/gearmand-0.34-r1.ebuild @@ -52,6 +52,9 @@ src_configure() { append-cppflags -DDEBUG fi + # Explicitly enable c++11 mode + append-cxxflags -std=c++11 + autotools-utils_src_configure } |