diff --git a/recipes/qt/5.x.x/conanfile.py b/recipes/qt/5.x.x/conanfile.py index f45348ca816a3..90c19d1762ee0 100644 --- a/recipes/qt/5.x.x/conanfile.py +++ b/recipes/qt/5.x.x/conanfile.py @@ -697,6 +697,8 @@ def build(self): args.append("-feature-gssapi" if self.options.get_safe("with_gssapi", False) else "-no-feature-gssapi") + args.append("-bundled-xcb-xinput") + for opt, conf_arg in [ ("with_doubleconversion", "doubleconversion"), ("with_freetype", "freetype"), diff --git a/recipes/qt/6.x.x/conanfile.py b/recipes/qt/6.x.x/conanfile.py index 4a2fb7512fa85..ea0b83fbef67f 100644 --- a/recipes/qt/6.x.x/conanfile.py +++ b/recipes/qt/6.x.x/conanfile.py @@ -578,6 +578,8 @@ def generate(self): for feature in str(self.options.disabled_features).split(): tc.variables[f"FEATURE_{feature}"] = "OFF" + + tc.variables["INPUT_bundled_xcb_xinput"] = "yes" if self.settings.os == "Macos": tc.variables["FEATURE_framework"] = "OFF"