mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBARCHIVE_VERSION = 3.4.0
|
||||
LIBARCHIVE_VERSION = 3.4.3
|
||||
LIBARCHIVE_SITE = https://www.libarchive.de/downloads
|
||||
LIBARCHIVE_INSTALL_STAGING = YES
|
||||
LIBARCHIVE_LICENSE = BSD-2-Clause, BSD-3-Clause, CC0-1.0, OpenSSL, Apache-2.0
|
||||
@@ -78,14 +78,29 @@ else
|
||||
LIBARCHIVE_CONF_OPTS += --without-xml2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LZ4),y)
|
||||
LIBARCHIVE_CONF_OPTS += --with-lz4
|
||||
LIBARCHIVE_DEPENDENCIES += lz4
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-lz4
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LZO),y)
|
||||
LIBARCHIVE_DEPENDENCIES += lzo
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-lzo2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
||||
LIBARCHIVE_DEPENDENCIES += mbedtls
|
||||
LIBARCHIVE_CONF_OPTS += --with-mbedtls
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-mbedtls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NETTLE),y)
|
||||
LIBARCHIVE_DEPENDENCIES += nettle
|
||||
LIBARCHIVE_CONF_OPTS += --with-nettle
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-nettle
|
||||
endif
|
||||
@@ -110,6 +125,13 @@ else
|
||||
LIBARCHIVE_CONF_OPTS += --without-lzma
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZSTD),y)
|
||||
LIBARCHIVE_DEPENDENCIES += zstd
|
||||
LIBARCHIVE_CONF_OPTS += --with-zstd
|
||||
else
|
||||
LIBARCHIVE_CONF_OPTS += --without-zstd
|
||||
endif
|
||||
|
||||
# The only user of host-libarchive needs zlib support
|
||||
HOST_LIBARCHIVE_DEPENDENCIES = host-zlib
|
||||
HOST_LIBARCHIVE_CONF_OPTS = \
|
||||
@@ -122,10 +144,13 @@ HOST_LIBARCHIVE_CONF_OPTS = \
|
||||
--without-expat \
|
||||
--without-libiconv-prefix \
|
||||
--without-xml2 \
|
||||
--without-lz4 \
|
||||
--without-lzo2 \
|
||||
--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