tiff: force libdeflate support to off 20608/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Tue, 7 Mar 2023 21:31:41 +0000 (22:31 +0100)
committerSebastian Kemper <sebastian_ml@gmx.net>
Tue, 7 Mar 2023 21:31:44 +0000 (22:31 +0100)
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 <sebastian_ml@gmx.net>
libs/tiff/Makefile

index 3b65ca7c1b644e4010da83bd6a1b8b911afc6bcb..39d705232452a6114175d77970754376fec4cf9e 100644 (file)
@@ -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))