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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF568158042 for ; Sun, 17 Nov 2024 03:06:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88C47E0A80; Sun, 17 Nov 2024 03:06:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72A72E0A80 for ; Sun, 17 Nov 2024 03:06:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC67F340C15 for ; Sun, 17 Nov 2024 03:06:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D3DA1E74 for ; Sun, 17 Nov 2024 03:06:45 +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: <1731811904.1bb37aa7df9acad7d32685f1ae517f28bf2cadcc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gdbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/gdbm/gdbm-1.24.ebuild X-VCS-Directories: sys-libs/gdbm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1bb37aa7df9acad7d32685f1ae517f28bf2cadcc X-VCS-Branch: master Date: Sun, 17 Nov 2024 03:06:45 +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: 5e39e1af-da45-4430-97ba-34fc3c8702d9 X-Archives-Hash: aa338ae011fdb7a3108f52e26a1647ff commit: 1bb37aa7df9acad7d32685f1ae517f28bf2cadcc Author: Sam James gentoo org> AuthorDate: Sun Nov 17 02:51:44 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 17 02:51:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb37aa7 sys-libs/gdbm: build w/ -std=gnu17 Bug: https://puszcza.gnu.org.ua/bugs/index.php?642 Signed-off-by: Sam James gentoo.org> sys-libs/gdbm/gdbm-1.24.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-libs/gdbm/gdbm-1.24.ebuild b/sys-libs/gdbm/gdbm-1.24.ebuild index 187ddbe14933..122b7b2c8098 100644 --- a/sys-libs/gdbm/gdbm-1.24.ebuild +++ b/sys-libs/gdbm/gdbm-1.24.ebuild @@ -4,7 +4,7 @@ EAPI=8 VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/gdbm.asc -inherit libtool multilib-minimal multiprocessing verify-sig +inherit flag-o-matic libtool multilib-minimal multiprocessing verify-sig DESCRIPTION="Standard GNU database libraries" HOMEPAGE="https://www.gnu.org/software/gdbm/" @@ -35,6 +35,9 @@ src_prepare() { } multilib_src_configure() { + # https://puszcza.gnu.org.ua/bugs/index.php?642 + append-cflags -std=gnu17 + # gdbm doesn't appear to use either of these libraries export ac_cv_lib_dbm_main=no ac_cv_lib_ndbm_main=no