diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-04-03 17:04:05 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-04-05 02:20:49 +0100 |
commit | 83dc9cfeac977a6577bf9f03bf8fe14c83f095cd (patch) | |
tree | f8a7ea2e675feca12f6c20c4f5363893deb7094d /x11-libs | |
parent | media-gfx/openvdb: mark as LTO-unsafe, strict-aliasing unsafe (diff) | |
download | gentoo-83dc9cfeac977a6577bf9f03bf8fe14c83f095cd.tar.gz gentoo-83dc9cfeac977a6577bf9f03bf8fe14c83f095cd.tar.bz2 gentoo-83dc9cfeac977a6577bf9f03bf8fe14c83f095cd.zip |
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 <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/fox/fox-1.6.57-r3.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
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) \ |