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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1CF2A158041 for ; Fri, 5 Apr 2024 01:21:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F403E2A23; Fri, 5 Apr 2024 01:21:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58493E2A23 for ; Fri, 5 Apr 2024 01:21:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A06834328C for ; Fri, 5 Apr 2024 01:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31A69167C for ; Fri, 5 Apr 2024 01:21:50 +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: <1712280049.83dc9cfeac977a6577bf9f03bf8fe14c83f095cd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/fox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/fox/fox-1.6.57-r3.ebuild X-VCS-Directories: x11-libs/fox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 83dc9cfeac977a6577bf9f03bf8fe14c83f095cd X-VCS-Branch: master Date: Fri, 5 Apr 2024 01:21:50 +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: 4cb57abc-92ce-4670-bfc6-d37496d6f29a X-Archives-Hash: 231374a9bdca6d882bf97b814b3a04c8 commit: 83dc9cfeac977a6577bf9f03bf8fe14c83f095cd Author: Eli Schwartz gmail com> AuthorDate: Wed Apr 3 21:04:05 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 5 01:20:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83dc9cfe x11-libs/fox: also mark oldest version as LTO-unsafe It has a different slot. Bug: https://bugs.gentoo.org/864412 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> x11-libs/fox/fox-1.6.57-r3.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/x11-libs/fox/fox-1.6.57-r3.ebuild b/x11-libs/fox/fox-1.6.57-r3.ebuild index af09467a64eb..75a76109a911 100644 --- a/x11-libs/fox/fox-1.6.57-r3.ebuild +++ b/x11-libs/fox/fox-1.6.57-r3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="C++ Toolkit for developing Graphical User Interfaces easily and effectively" HOMEPAGE="http://www.fox-toolkit.org/" @@ -51,6 +51,14 @@ src_prepare() { } src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/864412 + # Fixed in 1.7.84 + # + # Do not trust it for LTO either. + append-flags -fno-strict-aliasing + filter-lto + econf \ --disable-static \ --enable-$(usex debug debug release) \