From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1692208-garchives=archives.gentoo.org@lists.gentoo.org> 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 197ED1581FB for <garchives@archives.gentoo.org>; Fri, 22 Nov 2024 13:55:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6509CE08A8; Fri, 22 Nov 2024 13:55:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 ED0ADE08A4 for <gentoo-commits@lists.gentoo.org>; Fri, 22 Nov 2024 13:55:12 +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 0386833BDFF for <gentoo-commits@lists.gentoo.org>; Fri, 22 Nov 2024 13:55:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 192EE1295 for <gentoo-commits@lists.gentoo.org>; Fri, 22 Nov 2024 13:55:10 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1732282869.0fd631f8db8e5b612c97fdec47a1a62d3c6686ee.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3m/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/w3m/w3m-0.5.3_p20230121.ebuild X-VCS-Directories: www-client/w3m/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0fd631f8db8e5b612c97fdec47a1a62d3c6686ee X-VCS-Branch: master Date: Fri, 22 Nov 2024 13:55:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 97c31223-e8d8-494c-bdb1-b9eec00568b4 X-Archives-Hash: 95c6116b96f3a453fc54a1c962662d6a commit: 0fd631f8db8e5b612c97fdec47a1a62d3c6686ee Author: NRK <nrk <AT> disroot <DOT> org> AuthorDate: Fri Nov 22 13:22:47 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Nov 22 13:41:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd631f8 www-client/w3m: fix build on newer gcc temporary fix. longer term goal is to move over to the maintained fork: - https://sr.ht/~rkta/w3m/ - https://github.com/tats/w3m/issues/304 Closes: https://bugs.gentoo.org/943868 Signed-off-by: NRK <nrk <AT> disroot.org> Closes: https://github.com/gentoo/gentoo/pull/39411 Signed-off-by: Sam James <sam <AT> gentoo.org> www-client/w3m/w3m-0.5.3_p20230121.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/www-client/w3m/w3m-0.5.3_p20230121.ebuild b/www-client/w3m/w3m-0.5.3_p20230121.ebuild index 26ba1fc32582..3e44f0d3e7d1 100644 --- a/www-client/w3m/w3m-0.5.3_p20230121.ebuild +++ b/www-client/w3m/w3m-0.5.3_p20230121.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools prefix toolchain-funcs +inherit autotools prefix toolchain-funcs flag-o-matic MY_P="${P/_p/+git}" MY_PV="${PV/_p/+git}" @@ -67,6 +67,9 @@ src_configure() { local myconf=() local image imagelib + # Bug: https://bugs.gentoo.org/943868 + append-cflags -std=gnu17 + if use gdk-pixbuf ; then imagelib="gtk3" elif use imlib ; then