From 6f5c91e98599f1c79085ea7bb819a6e2d3411053 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 17 Apr 2020 17:54:50 +0200 Subject: configurejson2cmake: Remove mention of the system-xcb feature This feature was removed in commit 60588e1a. Change-Id: I061410dfab13a2210474014892d1bc828a5b21cf Reviewed-by: Alexandru Croitor --- util/cmake/configurejson2cmake.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'util/cmake') 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... -- cgit v1.2.3