commit: f7ba96bbdc8398e2b30bb15b7e7695be78a082ad 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:24:37 2026 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f7ba96bb
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-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kio/kio-9999.ebuild b/kde-frameworks/kio/kio-9999.ebuild index 5f82ae9ec3..54527e0a84 100644 --- a/kde-frameworks/kio/kio-9999.ebuild +++ b/kde-frameworks/kio/kio-9999.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)
