commit: bc3929cdd34430e04141c9b06b8ee6a6da636138
Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 00:22:33 2017 +0000
Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Thu May 18 00:22:33 2017 +0000
URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=bc3929cd
qt5-build.eclass: simplify conditional since 5.8.0 is gone
eclass/qt5-build.eclass | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index b8d1d85c..7ec6cac3 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -646,8 +646,7 @@ qt5_base_configure() {
# disable undocumented X11-related flags, override in qtgui
# (not shown in ./configure -help output)
-no-xkb
- $([[ ${QT5_MINOR_VERSION} -lt 8 || ${QT5_MINOR_VERSION} -eq 8
- && ${QT5_PATCH_VERSION} -lt 1 ]] && echo -no-xrender)
+ $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-xrender)
# disable obsolete/unused X11-related flags
$([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-mitshm
-no-xcursor -no-xfixes -no-xrandr -no-xshape -no-xsync)