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 45151158099 for ; Sun, 17 Nov 2024 06:33:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BE7CE0AC4; Sun, 17 Nov 2024 06:33:29 +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 732E4E0AC4 for ; Sun, 17 Nov 2024 06:33:29 +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 7FF5D34134D for ; Sun, 17 Nov 2024 06:33:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92F95156C for ; Sun, 17 Nov 2024 06:33:26 +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: <1731825145.d7d7ad95616f55c706e011a17b99a53b5f3b98fc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/texinfo/texinfo-7.1.1.ebuild X-VCS-Directories: sys-apps/texinfo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d7d7ad95616f55c706e011a17b99a53b5f3b98fc X-VCS-Branch: master Date: Sun, 17 Nov 2024 06:33:26 +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: 65e7fb8a-3235-4906-a3a9-eac2cc9719ff X-Archives-Hash: 4107439b3cc665b367d8c6633166c136 commit: d7d7ad95616f55c706e011a17b99a53b5f3b98fc Author: Sam James gentoo org> AuthorDate: Sun Nov 17 06:32:25 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 17 06:32:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d7ad95 sys-apps/texinfo: build 7.1.1 w/ -std=gnu17 Note that 7.1.90/7.1.91 work fine as it's been fixed, but no real need to backport that, especially with a new release on its way. Signed-off-by: Sam James gentoo.org> sys-apps/texinfo/texinfo-7.1.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys-apps/texinfo/texinfo-7.1.1.ebuild b/sys-apps/texinfo/texinfo-7.1.1.ebuild index 081fa9dce9ea..78b068309ada 100644 --- a/sys-apps/texinfo/texinfo-7.1.1.ebuild +++ b/sys-apps/texinfo/texinfo-7.1.1.ebuild @@ -70,6 +70,10 @@ src_prepare() { } src_configure() { + # https://lists.gnu.org/archive/html/bug-texinfo/2024-08/msg00020.html + # https://git.savannah.gnu.org/cgit/texinfo.git/commit/?id=7e8d0093b411729c8c570b25280bef6b55415594 + append-cflags -std=gnu17 + # Respect compiler and CPPFLAGS/CFLAGS/LDFLAGS for Perl extensions # bug #622576 local -x PERL_EXT_CC="$(tc-getCC)" PERL_EXT_CPPFLAGS="${CPPFLAGS}"