git: 1b82d05b8519 - main - audio/gnome-podcasts: fix build on armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Jan 2025 23:47:23 UTC
The branch main has been updated by fuz:
URL: https://cgit.FreeBSD.org/ports/commit/?id=1b82d05b851917d17de439397e132d33e005e4e1
commit 1b82d05b851917d17de439397e132d33e005e4e1
Author: Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2025-01-20 15:30:33 +0000
Commit: Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-01-21 23:46:26 +0000
audio/gnome-podcasts: fix build on armv7
This avoids an address space exhaustion due to LTO.
Approved by: portmgr (build fix blanket)
MFH: 2025Q1
---
audio/gnome-podcasts/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/audio/gnome-podcasts/Makefile b/audio/gnome-podcasts/Makefile
index 6ff33a240a50..d090c729730f 100644
--- a/audio/gnome-podcasts/Makefile
+++ b/audio/gnome-podcasts/Makefile
@@ -27,7 +27,7 @@ GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml
.include <bsd.port.options.mk>
-.if ${ARCH} == i386 || ${ARCH} == powerpc
+.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?}
# https://github.com/rust-lang/rust/issues/85598
LTO_UNSAFE= yes
.endif