commit: 3054a44ee473d023d0ee281f66878aa1109270d5 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Wed Mar 6 05:45:57 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 6 06:02:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3054a44e
app-misc/dfshow: mark as LTO-unsafe Closes: https://bugs.gentoo.org/854726 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild b/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild index d6a901fd6e7d..7cd16d1a8fd9 100644 --- a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild +++ b/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,6 +37,15 @@ src_prepare() { eautoreconf } +src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/854726 + # https://github.com/roberthawdon/dfshow/issues/172 + filter-lto + + default +} + src_install() { default
