From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C942C58973 for ; Tue, 2 Feb 2016 18:35:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAF8E21C119; Tue, 2 Feb 2016 18:35:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41BE421C119 for ; Tue, 2 Feb 2016 18:35:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD102340E13 for ; Tue, 2 Feb 2016 18:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 570A3FF9 for ; Tue, 2 Feb 2016 18:35:28 +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: <1454438105.32564342d63848613ab6a2ae2b9b09f409102403.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 32564342d63848613ab6a2ae2b9b09f409102403 X-VCS-Branch: master Date: Tue, 2 Feb 2016 18:35:28 +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: d037b99a-3525-4e70-a05c-a6571a281384 X-Archives-Hash: 3766be93dd0ed72fa2e88ce4c7b5d6b3 commit: 32564342d63848613ab6a2ae2b9b09f409102403 Author: Davide Pesavento gentoo org> AuthorDate: Tue Jan 19 17:23:01 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Feb 2 18:35:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32564342 qt5-build.eclass: disable gbm backend by default (cherry picked from proj/qt commit 79d57b576a73b142bbd939f46311618497083f5e) eclass/qt5-build.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 270ab13..381ae89 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -601,7 +601,9 @@ qt5_base_configure() { #-use-gold-linker # disable all platform plugins by default, override in qtgui - -no-xcb -no-eglfs -no-kms -no-directfb -no-linuxfb + -no-xcb -no-eglfs -no-kms + $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-gbm) + -no-directfb -no-linuxfb $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-mirclient) # disable undocumented X11-related flags, override in qtgui