Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 02 Feb 2016 18:35:46
Message-Id: 1454438105.32564342d63848613ab6a2ae2b9b09f409102403.pesa@gentoo
1 commit: 32564342d63848613ab6a2ae2b9b09f409102403
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 19 17:23:01 2016 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 18:35:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32564342
7
8 qt5-build.eclass: disable gbm backend by default
9
10 (cherry picked from proj/qt commit 79d57b576a73b142bbd939f46311618497083f5e)
11
12 eclass/qt5-build.eclass | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
16 index 270ab13..381ae89 100644
17 --- a/eclass/qt5-build.eclass
18 +++ b/eclass/qt5-build.eclass
19 @@ -601,7 +601,9 @@ qt5_base_configure() {
20 #-use-gold-linker
21
22 # disable all platform plugins by default, override in qtgui
23 - -no-xcb -no-eglfs -no-kms -no-directfb -no-linuxfb
24 + -no-xcb -no-eglfs -no-kms
25 + $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-gbm)
26 + -no-directfb -no-linuxfb
27 $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-mirclient)
28
29 # disable undocumented X11-related flags, override in qtgui