package/tiff: add webp optional dependency
webp is an optional dependency which is enabled by default since version
4.0.10 and
9eacd59fec
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
f934a00928
commit
3fd6ada8db
@ -72,6 +72,10 @@ config BR2_PACKAGE_TIFF_UTILITIES
|
|||||||
help
|
help
|
||||||
Install all tiff utilities.
|
Install all tiff utilities.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_TIFF_WEBP
|
||||||
|
bool "WEBP compression"
|
||||||
|
select BR2_PACKAGE_WEBP
|
||||||
|
|
||||||
config BR2_PACKAGE_TIFF_ZSTD
|
config BR2_PACKAGE_TIFF_ZSTD
|
||||||
bool "ZSTD compression"
|
bool "ZSTD compression"
|
||||||
select BR2_PACKAGE_ZSTD
|
select BR2_PACKAGE_ZSTD
|
||||||
|
@ -100,6 +100,13 @@ else
|
|||||||
TIFF_CONF_OPTS += --disable-tools
|
TIFF_CONF_OPTS += --disable-tools
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_TIFF_WEBP),y)
|
||||||
|
TIFF_CONF_OPTS += --enable-webp
|
||||||
|
TIFF_DEPENDENCIES += webp
|
||||||
|
else
|
||||||
|
TIFF_CONF_OPTS += --disable-webp
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_TIFF_ZSTD),y)
|
ifeq ($(BR2_PACKAGE_TIFF_ZSTD),y)
|
||||||
TIFF_CONF_OPTS += --enable-zstd
|
TIFF_CONF_OPTS += --enable-zstd
|
||||||
TIFF_DEPENDENCIES += zstd
|
TIFF_DEPENDENCIES += zstd
|
||||||
|
Loading…
Reference in New Issue
Block a user