Skip to content

Commit

Permalink
gst-plugins-base: use version range for libpng
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Mar 23, 2024
1 parent fd37951 commit f626efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/gst-plugins-base/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def requirements(self):
if self.options.with_graphene:
self.requires("graphene/1.10.8")
if self.options.with_libpng:
self.requires("libpng/1.6.40")
self.requires("libpng/[>=1.6 <2]")
if self.options.with_libjpeg == "libjpeg":
self.requires("libjpeg/9e")
elif self.options.with_libjpeg == "libjpeg-turbo":
Expand Down Expand Up @@ -133,7 +133,7 @@ def validate(self):
raise ConanInvalidConfiguration("OpenGL support with Wayland requires 'with_egl' turned on!")

def build_requirements(self):
self.tool_requires("meson/1.3.1")
self.tool_requires("meson/1.4.0")
if not self.conf.get("tools.gnu:pkg_config", default=False, check_type=str):
self.tool_requires("pkgconf/2.1.0")
if self.settings.os == "Windows":
Expand Down

0 comments on commit f626efd

Please sign in to comment.