summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <ossi@kde.org>2018-03-27 14:19:11 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-04-10 18:51:18 +0000
commit436a6fbb835906e1c62a11dfc7de61461ec767b0 (patch)
tree9dcfdf3cc310b0ebdc2e550553bd7f4be51875c6
parent2c6801cb37ed5a14435cf2f76ae115eeda0d210e (diff)
configure: make plain -xcb switch effective
the option is a quad enum, with "yes" meaning "either system or qt". the distinction is made only in the "system-xcb" feature, while "xcb" itself must be forced on in the "yes" case. Task-number: QTBUG-67251 Change-Id: Ib706e79a902ae0f1b64ca6d4611c9214b7b7e928 Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
-rw-r--r--src/gui/configure.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/configure.json b/src/gui/configure.json
index 220662ea8e..219385a108 100644
--- a/src/gui/configure.json
+++ b/src/gui/configure.json
@@ -1268,7 +1268,7 @@
"label": "XCB",
"section": "Platform plugins",
"autoDetect": "!config.darwin",
- "enable": "input.xcb == 'system' || input.xcb == 'qt'",
+ "enable": "input.xcb == 'system' || input.xcb == 'qt' || input.xcb == 'yes'",
"condition": "libs.xcb",
"output": [ "privateFeature" ]
},