From a56d4adb278e2836191e87e97b1a4926fd50d973 Mon Sep 17 00:00:00 2001 From: Levon Gevorgyan Date: Fri, 27 Feb 2026 09:09:10 -0600 Subject: [PATCH] skip building webp tools to avoid libtiff circular dependency --- lib/build.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/build.sh b/lib/build.sh index 49e1cc9..402db5d 100644 --- a/lib/build.sh +++ b/lib/build.sh @@ -889,7 +889,16 @@ build_libwebp() { "if(FALSE)\n" fi - meta_cmake_build || return 1 + meta_cmake_build \ + -DWEBP_BUILD_ANIM_UTILS=OFF \ + -DWEBP_BUILD_CWEBP=OFF \ + -DWEBP_BUILD_DWEBP=OFF \ + -DWEBP_BUILD_VWEBP=OFF \ + -DWEBP_BUILD_GIF2WEBP=OFF \ + -DWEBP_BUILD_IMG2WEBP=OFF \ + -DWEBP_BUILD_WEBPINFO=OFF \ + -DWEBP_BUILD_WEBPMUX=OFF \ + -DWEBP_BUILD_EXTRAS=OFF || return 1 sanitize_sysroot_libs libwebp libsharpyuv || return 1 }