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 3E69B138206 for ; Thu, 29 Jul 2021 02:59:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C9C4E096E; Thu, 29 Jul 2021 02:59:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4EC1AE0960 for ; Thu, 29 Jul 2021 02:59:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 64DDA342BBF for ; Thu, 29 Jul 2021 02:59:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53BEA851 for ; Thu, 29 Jul 2021 02:59:00 +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: <1627525452.04dea1fbb62f503659bba7109f238b13da5dfd42.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.6-r3.ebuild X-VCS-Directories: dev-db/opendbx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 04dea1fbb62f503659bba7109f238b13da5dfd42 X-VCS-Branch: master Date: Thu, 29 Jul 2021 02:59:00 +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: d00051a6-8386-4d57-b60e-e88ffaf83485 X-Archives-Hash: 7baa3c1551249da2af4606b033def2ed commit: 04dea1fbb62f503659bba7109f238b13da5dfd42 Author: Sam James gentoo org> AuthorDate: Thu Jul 29 02:24:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 29 02:24:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04dea1fb dev-db/opendbx: workaround build failure with GCC 11 in 1.4.6-r3 Closes: https://bugs.gentoo.org/788304 Signed-off-by: Sam James gentoo.org> dev-db/opendbx/opendbx-1.4.6-r3.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-db/opendbx/opendbx-1.4.6-r3.ebuild b/dev-db/opendbx/opendbx-1.4.6-r3.ebuild index 7bdd9b3e613..30ade850db9 100644 --- a/dev-db/opendbx/opendbx-1.4.6-r3.ebuild +++ b/dev-db/opendbx/opendbx-1.4.6-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -68,6 +68,9 @@ src_configure() { append-ldflags -L"${ORACLE_HOME}" fi + # bug #788304 + append-cxxflags -std=c++14 + econf --with-backends="${backends}" --enable-manpages="$(usex man yes no)" }