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 6541C1581E7 for ; Mon, 29 Apr 2024 08:28:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80ECF2BC017; Mon, 29 Apr 2024 08:28:51 +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 632502BC017 for ; Mon, 29 Apr 2024 08:28:51 +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 964B0343052 for ; Mon, 29 Apr 2024 08:28:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0239A16C0 for ; Mon, 29 Apr 2024 08:28:49 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1714379144.09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/thunderbird/thunderbird-115.10.1.ebuild X-VCS-Directories: mail-client/thunderbird/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2 X-VCS-Branch: master Date: Mon, 29 Apr 2024 08:28:49 +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: cee5222f-7494-4c68-9c94-1f7ff73e7b95 X-Archives-Hash: cd1831f2a3f1d0ed06654288ecaf27e1 commit: 09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2 Author: Joonas Niilola gentoo org> AuthorDate: Mon Apr 29 08:25:44 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Apr 29 08:25:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bf58ee mail-client/thunderbird: sync disable-elf hack condition for ppc64 Closes: https://bugs.gentoo.org/930779 Signed-off-by: Joonas Niilola gentoo.org> mail-client/thunderbird/thunderbird-115.10.1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mail-client/thunderbird/thunderbird-115.10.1.ebuild b/mail-client/thunderbird/thunderbird-115.10.1.ebuild index 1b82272c326d..b05e9d125a55 100644 --- a/mail-client/thunderbird/thunderbird-115.10.1.ebuild +++ b/mail-client/thunderbird/thunderbird-115.10.1.ebuild @@ -1015,7 +1015,13 @@ src_configure() { # With Firefox-115esr elf-hack=relr isn't available (only in rapid). # Solution: Disable build system's elf-hack completely, and add "-z,pack-relative-relocs" # manually with gcc. - mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack + # + # # elf-hack configure option isn't available on ppc64/riscv, #916259, #929244, #930046. + if use ppc64 || use riscv ; then + :; + else + mozconfig_add_options_ac 'elf-hack disabled' --disable-elf-hack + fi if use amd64 || use x86 ; then ! use clang && append-ldflags "-z,pack-relative-relocs"