commit: 89e672cff170482048437ce34e869c75138b6c17 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Dec 16 06:27:46 2019 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon Dec 16 12:36:43 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=89e672cf
qt5-build.eclass: Disable zstd for Qt5 >=5.13.2 RCC compression Closes: https://bugs.gentoo.org/699248 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/qt5-build.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 6529b4fa..95eb6174 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -643,6 +643,9 @@ qt5_base_configure() { # enable in respective modules to avoid poisoning QT.global_private.enabled_features -no-gui -no-widgets + # QTBUG-76521, default will change to zstd in Qt6 + $([[ ${QT5_MINOR_VERSION} -ge 13 ]] && echo -no-zstd) + # module-specific options "${myconf[@]}" )
