aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-01-20 15:28:04 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-01-20 15:28:04 +0000
commit78a35fb8e584a970446f9edc1e5cd61398d40958 (patch)
tree984d76d77d312b41588ed400cbd376f58a443eb6
parent8143be75314cfc29681bf4a1324b414f9844844d (diff)
Removed webp and zstd as dependencies of libtiff
The TIFF library can optionally depend on webp [1] and zstd [2]. But these aren't commonly used in scientific datasets so to avoid a longer build and managing of extra dependencies (atleast for now!), we are disabling them. The problem is that they cause a dependency on the host system and if they are updated/removed, the relevant pipeline programs will crash. [1] https://en.wikipedia.org/wiki/WebP [2] https://en.wikipedia.org/wiki/Zstandard
-rw-r--r--reproduce/src/make/dependencies.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/reproduce/src/make/dependencies.mk b/reproduce/src/make/dependencies.mk
index bfe461b..b4a2ec1 100644
--- a/reproduce/src/make/dependencies.mk
+++ b/reproduce/src/make/dependencies.mk
@@ -215,7 +215,8 @@ $(ilidir)/libjpeg: $(tdir)/jpegsrc.$(libjpeg-version).tar.gz
$(ilidir)/libtiff: $(tdir)/tiff-$(libtiff-version).tar.gz \
$(ilidir)/libjpeg
- $(call gbuild, $<, tiff-$(libtiff-version), static) \
+ $(call gbuild, $<, tiff-$(libtiff-version), static, \
+ --disable-webp --disable-zstd) \
&& echo "Libtiff is built" > $@