commit: 9a41cc1078c6f843351db280f48f98c50bb1b11c Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Mon Feb 19 18:17:21 2018 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Mon Feb 19 19:40:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a41cc10
sci-libs/libdap: Always build in C++14 mode Closes: https://bugs.gentoo.org/619144 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sci-libs/libdap/libdap-3.18.1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-libs/libdap/libdap-3.18.1.ebuild b/sci-libs/libdap/libdap-3.18.1.ebuild index b0a4bfc02ba..c0680c183d3 100644 --- a/sci-libs/libdap/libdap-3.18.1.ebuild +++ b/sci-libs/libdap/libdap-3.18.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Implementation of a C++ SDK for DAP 2.0 and 3.2" HOMEPAGE="http://opendap.org/" @@ -38,6 +38,9 @@ src_prepare() { } src_configure() { + # bug 619144 + append-cxxflags -std=c++14 + econf \ --enable-shared \ $(use_enable static-libs static)
