summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-03-13 04:24:42 +0000
committerSam James <sam@gentoo.org>2024-03-13 04:24:42 +0000
commit4946f27930e2e317938612b1dec9d7cc19855ad5 (patch)
treec3fea36b88205ba0f107904fd0cc4bc7d51332ea
parentapp-text/wgetpaste: add 2.34 (diff)
downloadgentoo-4946f27930e2e317938612b1dec9d7cc19855ad5.tar.gz
gentoo-4946f27930e2e317938612b1dec9d7cc19855ad5.tar.bz2
gentoo-4946f27930e2e317938612b1dec9d7cc19855ad5.zip
games-emulation/gnuboy: filter LTO, no-SA
Dead upstream. Closes: https://bugs.gentoo.org/858701 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--games-emulation/gnuboy/gnuboy-1.0.3-r4.ebuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r4.ebuild b/games-emulation/gnuboy/gnuboy-1.0.3-r4.ebuild
index 6fcd97ea2826..6a69c356ddca 100644
--- a/games-emulation/gnuboy/gnuboy-1.0.3-r4.ebuild
+++ b/games-emulation/gnuboy/gnuboy-1.0.3-r4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit autotools
+inherit autotools flag-o-matic
DESCRIPTION="Gameboy emulator with multiple renderers"
HOMEPAGE="https://sourceforge.net/projects/gnuboy/"
@@ -39,6 +39,10 @@ src_prepare() {
}
src_configure() {
+ # LTO type mismatches (bug #858701)
+ append-flags -fno-strict-aliasing
+ filter-lto
+
local econfargs=(
$(use_with X x)
$(use_with sdl)