commit: e17e4d8bffe19eb873f7d823b19aeb4c1d1455f2 Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> AuthorDate: Mon Aug 12 04:20:26 2024 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Mon Aug 12 04:20:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e17e4d8b
media-gfx/xv: mark as LTO-unsafe Closes: https://bugs.gentoo.org/859823 Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org> media-gfx/xv/xv-3.10a-r22.ebuild | 5 +++++ media-gfx/xv/xv-5.2.0.ebuild | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/media-gfx/xv/xv-3.10a-r22.ebuild b/media-gfx/xv/xv-3.10a-r22.ebuild index 6349d9814431..9141002ec745 100644 --- a/media-gfx/xv/xv-3.10a-r22.ebuild +++ b/media-gfx/xv/xv-3.10a-r22.ebuild @@ -70,6 +70,11 @@ src_prepare() { } src_compile() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/859823 + # https://github.com/jasper-software/xv/issues/25 + filter-lto + emake \ CC="$(tc-getCC)" CCOPTS="${CPPFLAGS} ${CFLAGS}" LDFLAGS="${LDFLAGS}" \ PREFIX="${EPREFIX}"/usr \ diff --git a/media-gfx/xv/xv-5.2.0.ebuild b/media-gfx/xv/xv-5.2.0.ebuild index 49af68754450..a1e2d3e14fb9 100644 --- a/media-gfx/xv/xv-5.2.0.ebuild +++ b/media-gfx/xv/xv-5.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake desktop +inherit cmake desktop flag-o-matic JUMBOV=20070520 DESCRIPTION="Interactive image manipulation program supporting a wide variety of formats" @@ -33,6 +33,11 @@ PATCHES=( ) src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/859823 + # https://github.com/jasper-software/xv/issues/25 + filter-lto + local mycmakeargs=( -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" -DXV_ENABLE_JPEG=$(usex jpeg)
