package/libarchive: add zstd optional dependency
zstd is available since version 3.3.3 and
https://github.com/libarchive/libarchive/commit/26838cf5c17642f57192753cc5c3880b16b65ba3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 4bcc344464)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
cebf537751
commit
beb89fd77f
@@ -111,6 +111,13 @@ else
|
||||
LIBARCHIVE_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZSTD),y)
|
||||
LIBARCHIVE_CONF_OPTS += --with-zstd
|
||||
LIBARCHIVE_DEPENDENCIES += zstd
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-zstd
|
||||
endif
|
||||
|
||||
# libarchive requires LZMA with thread support in the toolchain
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS)$(BR2_PACKAGE_XZ),yy)
|
||||
LIBARCHIVE_DEPENDENCIES += xz
|
||||
@@ -136,7 +143,8 @@ HOST_LIBARCHIVE_CONF_OPTS = \
|
||||
--without-mbedtls \
|
||||
--without-nettle \
|
||||
--without-openssl \
|
||||
--without-lzma
|
||||
--without-lzma \
|
||||
--without-zstd
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user