diff options
author | Sebastian Kemper <sebastian_ml@gmx.net> | 2018-12-02 11:03:50 +0100 |
---|---|---|
committer | Sebastian Kemper <sebastian_ml@gmx.net> | 2018-12-02 11:16:26 +0100 |
commit | ce142361177bb11892686c816dfe07b3a578bb52 (patch) | |
tree | 28de995d2928f58e622cc4d0374b4c878b917ce1 /libs/tiff | |
parent | 37aeee740c15273f92bde81290e63f8af9f8af3f (diff) |
tiff: disable ZSTD and WebP codecs explicitly
tiff 4.0.10 added two new compression codecs, ZSTD and WebP. If the
respective libraries are found, these codecs will be built. Currently
they're not built, because these libraries do not exist in OpenWrt.
This commit adds the configure switches to disable these codecs. It's
likely that any of these libs will make their way into OpenWrt sooner or
later, so this commit prevents the related build failures (missing
depends).
If there is a need to enable these codecs in tiff in the future, then
this can be done, obviously, but at least there will be no build failure
suprises in the meantime.
Also, this commit corrects the homepage of libtiff.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Diffstat (limited to 'libs/tiff')
-rw-r--r-- | libs/tiff/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/tiff/Makefile b/libs/tiff/Makefile index 0c2a3d8f7..0c272382b 100644 --- a/libs/tiff/Makefile +++ b/libs/tiff/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tiff PKG_VERSION:=4.0.10 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://download.osgeo.org/libtiff @@ -32,7 +32,7 @@ include $(INCLUDE_DIR)/package.mk define Package/tiff/Default TITLE:=TIFF - URL:=http://www.remotesensing.org/libtiff/ + URL:=http://simplesystems.org/libtiff/ MAINTAINER:=Jiri Slachta <jiri@slachta.eu> endef @@ -75,6 +75,8 @@ CONFIGURE_ARGS += \ --enable-jpeg \ --disable-old-jpeg \ --disable-jbig \ + --disable-webp \ + --disable-zstd \ --without-x define Build/InstallDev/hxx |