commit: ad792dc4e01a1c47a2bc1da28e78f0bc52539efa Author: Kostadin Shishmanov <kostadinshishmanov <AT> protonmail <DOT> com> AuthorDate: Sat Feb 21 17:07:02 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Feb 21 17:27:08 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad792dc4
kde-frameworks/kio: raise stack size for musl Let's raise the stack size for kio itself instead, as more and more cases of its reverse dependencies having issues pop up. Bug: https://bugs.gentoo.org/967753 Signed-off-by: Kostadin Shishmanov <kostadinshishmanov <AT> protonmail.com> Part-of: https://github.com/gentoo/kde/pull/1091 Closes: https://github.com/gentoo/kde/pull/1091 Signed-off-by: Sam James <sam <AT> gentoo.org> kde-frameworks/kio/kio-6.23.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kio/kio-6.23.0.ebuild b/kde-frameworks/kio/kio-6.23.0.ebuild index 7f30b738b1ef..34ff35405fff 100644 --- a/kde-frameworks/kio/kio-6.23.0.ebuild +++ b/kde-frameworks/kio/kio-6.23.0.ebuild @@ -8,7 +8,7 @@ ECM_HANDBOOK="optional" ECM_HANDBOOK_DIR="docs" ECM_TEST="forceoptional" QTMIN=6.10.1 -inherit ecm frameworks.kde.org xdg +inherit ecm flag-o-matic frameworks.kde.org xdg DESCRIPTION="Framework providing transparent file and data management" @@ -72,6 +72,8 @@ PDEPEND=" " src_configure() { + use elibc_musl && append-ldflags -Wl,-z,stack-size=0x100000 # upstream bug 470763 + local mycmakeargs=( $(cmake_use_find_package acl ACL) $(cmake_use_find_package kwallet KF6Wallet)
