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 <sebastian_ml@gmx.net>
(cherry picked from commit e3c6da4e25)
This commit is contained in:
Sebastian Kemper 2023-03-07 22:31:41 +01:00 committed by Josef Schlehofer
parent b72390bb95
commit 16480e7038
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ CMAKE_OPTIONS += \
-Dzstd=OFF \
-Dwebp=OFF \
-Djpeg12=OFF \
-Dcxx=OFF
-Dcxx=OFF \
-Dlibdeflate=OFF
TARGET_CFLAGS += $(TARGET_CPPFLAGS)