From e3c6da4e25a96eae0cf249393af8599659a04b09 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Tue, 7 Mar 2023 22:31:41 +0100 Subject: [PATCH] tiff: force libdeflate support to off Commit 81d2b72 added a package providing libdeflate. Tiff by default links to it, causing a build error. Package libtiff is missing dependencies for the following libraries: libdeflate.so.0 This commit forces libdeflate use off to avoid this. No revision bump is done because the package is currently not compiling anyway. Signed-off-by: Sebastian Kemper --- libs/tiff/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/tiff/Makefile b/libs/tiff/Makefile index 3b65ca7c1b..39d7052324 100644 --- a/libs/tiff/Makefile +++ b/libs/tiff/Makefile @@ -64,7 +64,8 @@ CMAKE_OPTIONS += \ -Dzstd=OFF \ -Dwebp=OFF \ -Djpeg12=OFF \ - -Dcxx=OFF + -Dcxx=OFF \ + -Dlibdeflate=OFF define Build/InstallDev $(call Build/InstallDev/cmake,$(1)) -- 2.30.2