mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/tiff: add libdeflate optional dependency
libdeflate is an optional dependency which is enabled by default since
version 4.2.0 and
3a2de853a9
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
96d3e5fd2f
commit
08ca8ff727
@@ -11,6 +11,11 @@ config BR2_PACKAGE_TIFF_CCITT
|
|||||||
bool "CCITT Group 3 & 4 support"
|
bool "CCITT Group 3 & 4 support"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config BR2_PACKAGE_TIFF_LIBDEFLATE
|
||||||
|
bool "Libdeflate usage (still requires Zlib)"
|
||||||
|
select BR2_PACKAGE_LIBDEFLATE
|
||||||
|
select BR2_PACKAGE_TIFF_ZLIB
|
||||||
|
|
||||||
config BR2_PACKAGE_TIFF_PACKBITS
|
config BR2_PACKAGE_TIFF_PACKBITS
|
||||||
bool "Macintosh PackBits algorithm"
|
bool "Macintosh PackBits algorithm"
|
||||||
default y
|
default y
|
||||||
|
|||||||
@@ -33,6 +33,13 @@ ifneq ($(BR2_PACKAGE_TIFF_CCITT),y)
|
|||||||
TIFF_CONF_OPTS += --disable-ccitt
|
TIFF_CONF_OPTS += --disable-ccitt
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_TIFF_LIBDEFLATE),y)
|
||||||
|
TIFF_CONF_OPTS += --enable-libdeflate
|
||||||
|
TIFF_DEPENDENCIES += libdeflate
|
||||||
|
else
|
||||||
|
TIFF_CONF_OPTS += --disable-libdeflate
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(BR2_PACKAGE_TIFF_PACKBITS),y)
|
ifneq ($(BR2_PACKAGE_TIFF_PACKBITS),y)
|
||||||
TIFF_CONF_OPTS += --disable-packbits
|
TIFF_CONF_OPTS += --disable-packbits
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user