diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-03 19:06:43 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-04 04:14:11 +0000 |
commit | 56692e74e1ca84863bfb0fb5e9ea2c5191ad6f78 (patch) | |
tree | 2ed2de82fb3aa8bf843a40c09717535fbfb5b094 /dev-libs/libgnt | |
parent | app-crypt/gnupg: backport fix for gpgme tests (diff) | |
download | gentoo-56692e74e1ca84863bfb0fb5e9ea2c5191ad6f78.tar.gz gentoo-56692e74e1ca84863bfb0fb5e9ea2c5191ad6f78.tar.bz2 gentoo-56692e74e1ca84863bfb0fb5e9ea2c5191ad6f78.zip |
dev-libs/libgnt: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/855872
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libgnt')
-rw-r--r-- | dev-libs/libgnt/libgnt-2.14.3.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dev-libs/libgnt/libgnt-2.14.3.ebuild b/dev-libs/libgnt/libgnt-2.14.3.ebuild index e69ee9d06634..04d2ce3f3f6b 100644 --- a/dev-libs/libgnt/libgnt-2.14.3.ebuild +++ b/dev-libs/libgnt/libgnt-2.14.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit meson +inherit flag-o-matic meson DESCRIPTION="Pidgin's GLib Ncurses Toolkit" HOMEPAGE="https://keep.imfreedom.org/libgnt/libgnt" @@ -32,6 +32,11 @@ PATCHES=( ) src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/855872 + # https://issues.imfreedom.org/issue/LIBGNT-19/Build-fails-with-LTO + filter-lto + local emesonargs=( -Dpython2=false $(meson_use doc) |