Skip to content

Commit

Permalink
(#22929) qt: Bump expat to 2.6.0 to avoid conflicts in xkbcommon and …
Browse files Browse the repository at this point in the history
…wayland
  • Loading branch information
jwillikers authored Mar 1, 2024
1 parent 0577ab4 commit 56a3277
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion recipes/qt/5.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def requirements(self):
if self.options.with_zstd:
self.requires("zstd/1.5.5")
if self.options.qtwebengine and self.settings.os in ["Linux", "FreeBSD"]:
self.requires("expat/2.5.0")
self.requires("expat/2.6.0")
self.requires("opus/1.4")
if not self.options.qtwayland:
self.requires("xorg-proto/2022.2")
Expand Down
4 changes: 2 additions & 2 deletions recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def requirements(self):
if self.options.with_brotli:
self.requires("brotli/1.1.0")
if self.options.get_safe("qtwebengine") and self.settings.os == "Linux":
self.requires("expat/2.5.0")
self.requires("expat/2.6.0")
self.requires("opus/1.4")
self.requires("xorg-proto/2022.2")
self.requires("libxshmfence/1.3")
Expand Down Expand Up @@ -614,7 +614,7 @@ def generate(self):
}
if Version(self.version) >= "6.5.0":
cpp_std_map[23] = "FEATURE_cxx2b"

for std,feature in cpp_std_map.items():
tc.variables[feature] = "ON" if int(current_cpp_std) >= std else "OFF"

Expand Down

0 comments on commit 56a3277

Please sign in to comment.