From 941aa57b12a2f2afcb79895ea3b8e0c4a5a5ddca Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Tue, 26 Mar 2024 16:50:19 +0200 Subject: [PATCH] gdal: require libjxl/0.8.2 --- recipes/gdal/post_3.5.0/conanfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/gdal/post_3.5.0/conanfile.py b/recipes/gdal/post_3.5.0/conanfile.py index a9d7ffa513aba..e73d5e417d350 100644 --- a/recipes/gdal/post_3.5.0/conanfile.py +++ b/recipes/gdal/post_3.5.0/conanfile.py @@ -230,7 +230,8 @@ def requirements(self): elif self.options.with_jpeg == "libjpeg-turbo": self.requires("libjpeg-turbo/3.0.2") if self.options.with_jxl: - self.requires("libjxl/0.6.1") + # 0.9+ is not compatible as of v3.8.4 + self.requires("libjxl/0.8.2") if self.options.with_kea: self.requires("kealib/1.5.2") if self.options.with_lerc: