From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 48D67139360 for ; Wed, 4 Aug 2021 22:35:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42A56E0997; Wed, 4 Aug 2021 22:35:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0CBE6E0993 for ; Wed, 4 Aug 2021 22:35:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34FA8342CF1 for ; Wed, 4 Aug 2021 22:35:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A029B851 for ; Wed, 4 Aug 2021 22:34:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1628116488.078826f79b8e1af7ddb40bc1e7d7ea7d71662608.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/opendbx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/opendbx/opendbx-1.4.5-r1.ebuild dev-db/opendbx/opendbx-1.4.6-r2.ebuild X-VCS-Directories: dev-db/opendbx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 078826f79b8e1af7ddb40bc1e7d7ea7d71662608 X-VCS-Branch: master Date: Wed, 4 Aug 2021 22:34:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 014f04d5-c527-4a25-829c-6c6387ac5e4c X-Archives-Hash: c2fe12cc6d1ce83edce902ee9c033d3e commit: 078826f79b8e1af7ddb40bc1e7d7ea7d71662608 Author: Sam James gentoo org> AuthorDate: Wed Aug 4 22:34:20 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 4 22:34:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=078826f7 dev-db/opendbx: workaround build failure with GCC 11 Bug: https://bugs.gentoo.org/788304 Bug: https://bugs.gentoo.org/804993 See: 04dea1fbb62f503659bba7109f238b13da5dfd42 Signed-off-by: Sam James gentoo.org> dev-db/opendbx/opendbx-1.4.5-r1.ebuild | 5 ++++- dev-db/opendbx/opendbx-1.4.6-r2.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-db/opendbx/opendbx-1.4.5-r1.ebuild b/dev-db/opendbx/opendbx-1.4.5-r1.ebuild index 222716f22f7..d62eda3c5e8 100644 --- a/dev-db/opendbx/opendbx-1.4.5-r1.ebuild +++ b/dev-db/opendbx/opendbx-1.4.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -60,6 +60,9 @@ src_configure() { append-ldflags -L"${ORACLE_HOME}" fi + # bug #788304 + append-cxxflags -std=c++14 + econf --with-backends="${backends}" } diff --git a/dev-db/opendbx/opendbx-1.4.6-r2.ebuild b/dev-db/opendbx/opendbx-1.4.6-r2.ebuild index 5c3009011be..7ba0179beda 100644 --- a/dev-db/opendbx/opendbx-1.4.6-r2.ebuild +++ b/dev-db/opendbx/opendbx-1.4.6-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -60,6 +60,9 @@ src_configure() { append-ldflags -L"${ORACLE_HOME}" fi + # bug #788304 + append-cxxflags -std=c++14 + econf --with-backends="${backends}" }