Skip to content

Commit

Permalink
As reported in issue conan-io#22654, qt depends on freetype/2.13.2 wh…
Browse files Browse the repository at this point in the history
…ich depends on libpng/1.6.42 which conflicts with qt's dependency on libpng/1.6.40. Bumping the libpng dependency version on libpng
  • Loading branch information
dheater committed Feb 6, 2024
1 parent 7387c5d commit ba3769e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def requirements(self):
else:
self.requires("libjpeg/9e")
if self.options.get_safe("with_libpng", False) and not self.options.multiconfiguration:
self.requires("libpng/1.6.40")
self.requires("libpng/1.6.42")
if self.options.with_sqlite3 and not self.options.multiconfiguration:
self.requires("sqlite3/3.45.0")
if self.options.get_safe("with_mysql", False):
Expand Down

0 comments on commit ba3769e

Please sign in to comment.