Disable libdeflate when using built-in libtiff

This is another library that can be detected and used by libtiff
configure that we don't want to use, as built-in libraries shouldn't
have any external dependencies, so explicitly disable its use, just as
it was already done for libjbig, libwebp and libzstd, see ec4b71afa0
(Update tiff submodule, 2018-11-17) and b7600b0b1b (Ensure jbig support
is disabled for builtin libtiff, 2020-06-17).

Closes https://github.com/wxWidgets/wxWidgets/pull/2394
This commit is contained in:
Tim Stahlhut
2021-06-14 09:19:48 -04:00
committed by Vadim Zeitlin
parent b52f00492e
commit 3be6800831
2 changed files with 3 additions and 1 deletions

1
configure vendored
View File

@@ -22526,6 +22526,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
ax_args="--disable-option-checking $ax_args"
# Options that must be added as they are provided.
as_fn_append ax_args " '--disable-jbig'"
as_fn_append ax_args " '--disable-libdeflate'"
as_fn_append ax_args " '--disable-webp'"
as_fn_append ax_args " '--disable-zstd'"
as_fn_append ax_args " '$tiff_lzma_option'"