Skip to content

Commit

Permalink
qt: don't use bundled xcb-xinput
Browse files Browse the repository at this point in the history
it is actually provided by xorg/system
  • Loading branch information
ericLemanissier committed Apr 16, 2024
1 parent a7f6983 commit e89b934
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 @@ -682,6 +682,8 @@ def build(self):

args.append("-feature-gssapi" if self.options.get_safe("with_gssapi", False) else "-no-feature-gssapi")

args.append("-no-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 @@ -566,6 +566,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"] = "no"

if self.settings.os == "Macos":
tc.variables["FEATURE_framework"] = "OFF"
Expand Down

0 comments on commit e89b934

Please sign in to comment.