Skip to content

Commit 4db0045

Browse files
committed
Disable libdeflate for libtiff
1 parent 1c7f31a commit 4db0045

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SPC/builder/unix/library/libtiff.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ protected function build(): void
1919
$extra_libs = '--enable-zlib --with-zlib-include-dir=' . BUILD_ROOT_PATH . '/include --with-zlib-lib-dir=' . BUILD_ROOT_PATH . '/lib';
2020
// libjpeg
2121
$extra_libs .= ' --enable-jpeg --disable-old-jpeg --disable-jpeg12 --with-jpeg-include-dir=' . BUILD_ROOT_PATH . '/include --with-jpeg-lib-dir=' . BUILD_ROOT_PATH . '/lib';
22-
// We disabled lzma, zstd, webp by default to reduce the size of the binary
23-
$extra_libs .= ' --disable-lzma --disable-zstd --disable-webp';
22+
// We disabled lzma, zstd, webp, libdeflate by default to reduce the size of the binary
23+
$extra_libs .= ' --disable-lzma --disable-zstd --disable-webp --disable-libdeflate';
2424

2525
$shell = shell()->cd($this->source_dir)
2626
->exec(

0 commit comments

Comments
 (0)