package/rsync: add zstd support

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2022-12-29 10:25:39 +01:00 committed by Thomas Petazzoni
parent 3de4ae0121
commit 83a3744c73

View File

@ -19,7 +19,6 @@ RSYNC_CONF_OPTS = \
--with-included-popt=no \
--disable-roll-simd \
--disable-openssl \
--disable-zstd \
--disable-lz4 \
--disable-md5-asm
@ -36,4 +35,11 @@ else
RSYNC_CONF_OPTS += --disable-xxhash
endif
ifeq ($(BR2_PACKAGE_ZSTD),y)
RSYNC_DEPENDENCIES += zstd
RSYNC_CONF_OPTS += --enable-zstd
else
RSYNC_CONF_OPTS += --disable-zstd
endif
$(eval $(autotools-package))