diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-21 01:16:53 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-21 11:43:39 +0100 |
commit | 4b2c2f030d327789d1a6dbe6cd7468a0dac98be2 (patch) | |
tree | 33fafc271a3a29300e304894b607a5712a2c8ec1 /x11-misc/stalonetray | |
parent | dev-libs/dynolog: add dev-libs/pfs dep (diff) | |
download | gentoo-4b2c2f030d327789d1a6dbe6cd7468a0dac98be2.tar.gz gentoo-4b2c2f030d327789d1a6dbe6cd7468a0dac98be2.tar.bz2 gentoo-4b2c2f030d327789d1a6dbe6cd7468a0dac98be2.zip |
x11-misc/stalonetray: squelch FP for implicit decl in configure
It only appears on musl since it is a fallback for execinfo. The check
always fails, but is expectd to since this isn't solaris.
Closes: https://bugs.gentoo.org/928850
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc/stalonetray')
-rw-r--r-- | x11-misc/stalonetray/stalonetray-0.8.4.ebuild | 8 | ||||
-rw-r--r-- | x11-misc/stalonetray/stalonetray-0.8.5.ebuild | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/x11-misc/stalonetray/stalonetray-0.8.4.ebuild b/x11-misc/stalonetray/stalonetray-0.8.4.ebuild index f63dff437496..778490e7e88a 100644 --- a/x11-misc/stalonetray/stalonetray-0.8.4.ebuild +++ b/x11-misc/stalonetray/stalonetray-0.8.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,6 +25,12 @@ BDEPEND="app-text/docbook-xml-dtd DOCS=( AUTHORS BUGS COPYING NEWS README.md TODO stalonetrayrc.sample stalonetray.html ) +QA_CONFIG_IMPL_DECL_SKIP+=( + # Only on solaris. + # Produces an undefined reference on gcc 13. + printstack +) + src_prepare() { default eautoreconf diff --git a/x11-misc/stalonetray/stalonetray-0.8.5.ebuild b/x11-misc/stalonetray/stalonetray-0.8.5.ebuild index 15991a24a54d..5831b163f7d3 100644 --- a/x11-misc/stalonetray/stalonetray-0.8.5.ebuild +++ b/x11-misc/stalonetray/stalonetray-0.8.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,6 +25,12 @@ BDEPEND="app-text/docbook-xml-dtd DOCS=( AUTHORS BUGS COPYING NEWS README.md TODO stalonetrayrc.sample stalonetray.html ) +QA_CONFIG_IMPL_DECL_SKIP+=( + # Only on solaris. + # Produces an undefined reference on gcc 13. + printstack +) + src_prepare() { default eautoreconf |