Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/opendbx/
Date: Thu, 29 Jul 2021 02:59:05
Message-Id: 1627525452.04dea1fbb62f503659bba7109f238b13da5dfd42.sam@gentoo
1 commit: 04dea1fbb62f503659bba7109f238b13da5dfd42
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 29 02:24:12 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 29 02:24:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04dea1fb
7
8 dev-db/opendbx: workaround build failure with GCC 11 in 1.4.6-r3
9
10 Closes: https://bugs.gentoo.org/788304
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-db/opendbx/opendbx-1.4.6-r3.ebuild | 5 ++++-
14 1 file changed, 4 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-db/opendbx/opendbx-1.4.6-r3.ebuild b/dev-db/opendbx/opendbx-1.4.6-r3.ebuild
17 index 7bdd9b3e613..30ade850db9 100644
18 --- a/dev-db/opendbx/opendbx-1.4.6-r3.ebuild
19 +++ b/dev-db/opendbx/opendbx-1.4.6-r3.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI="6"
26 @@ -68,6 +68,9 @@ src_configure() {
27 append-ldflags -L"${ORACLE_HOME}"
28 fi
29
30 + # bug #788304
31 + append-cxxflags -std=c++14
32 +
33 econf --with-backends="${backends}" --enable-manpages="$(usex man yes no)"
34 }