summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-04-17 17:54:50 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-04-17 20:41:44 +0200
commit6f5c91e98599f1c79085ea7bb819a6e2d3411053 (patch)
tree822a6d99735be200134e19d156e900ace0bc1b28 /util
parentbad2ac47f8a6a43df62208e80e114fdd554ed542 (diff)
configurejson2cmake: Remove mention of the system-xcb feature
This feature was removed in commit 60588e1a. Change-Id: I061410dfab13a2210474014892d1bc828a5b21cf Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/configurejson2cmake.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py
index f004e732f6..5a2dd85237 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -258,7 +258,7 @@ def map_condition(condition):
return "OFF"
assert isinstance(condition, str)
- mapped_features = {"gbm": "gbm_FOUND", "system-xcb": "ON"}
+ mapped_features = {"gbm": "gbm_FOUND"}
# Turn foo != "bar" into (NOT foo STREQUAL 'bar')
condition = re.sub(r"([^ ]+)\s*!=\s*('.*?')", "(! \\1 == \\2)", condition)
@@ -909,7 +909,6 @@ def get_feature_mapping():
"enable": "TEST_sun_iconv",
"disable": "NOT TEST_sun_iconv",
},
- "system-xcb": None,
"tiff": {"condition": "QT_FEATURE_imageformatplugin AND TIFF_FOUND"},
"use_gold_linker": None,
"verifyspec": None, # qmake specific...