Skip to content

Commit

Permalink
qt: force use of bundled xcb-xinput
Browse files Browse the repository at this point in the history
xenial does not have xcb-xinput
  • Loading branch information
ericLemanissier committed Apr 16, 2024
1 parent edad018 commit b90976a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/qt/5.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 2 additions & 0 deletions recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b90976a

Please sign in to comment.