summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2024-04-29 11:25:44 +0300
committerJoonas Niilola <juippis@gentoo.org>2024-04-29 11:25:44 +0300
commit09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2 (patch)
tree0f9de42c23853ee2c1a04b509fdbd99684d5cbbe /mail-client
parentwww-client/firefox: drop 122.0.1, 124.0.1, 124.0.2, 125.0.1 (diff)
downloadgentoo-09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2.tar.gz
gentoo-09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2.tar.bz2
gentoo-09bf58ee6d5c726d9c7a77ea5bf1d0640e9529c2.zip
mail-client/thunderbird: sync disable-elf hack condition for ppc64
Closes: https://bugs.gentoo.org/930779 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'mail-client')
-rw-r--r--mail-client/thunderbird/thunderbird-115.10.1.ebuild8
1 files changed, 7 insertions, 1 deletions
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"