From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84024139694 for ; Thu, 18 May 2017 00:23:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15C1BE0C3D; Thu, 18 May 2017 00:23:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3875E0C3D for ; Thu, 18 May 2017 00:23:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A74ED341693 for ; Thu, 18 May 2017 00:23:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CC25745C for ; Thu, 18 May 2017 00:23:09 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1495066953.bc3929cdd34430e04141c9b06b8ee6a6da636138.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: bc3929cdd34430e04141c9b06b8ee6a6da636138 X-VCS-Branch: master Date: Thu, 18 May 2017 00:23:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6f6a4ab8-bc56-4bd5-b00a-0aedb3240155 X-Archives-Hash: 067c73f27eeae9fb24c6b54d36ac47b4 commit: bc3929cdd34430e04141c9b06b8ee6a6da636138 Author: Davide Pesavento gentoo org> AuthorDate: Thu May 18 00:22:33 2017 +0000 Commit: Davide Pesavento gentoo 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)