package/rsync: add openssl 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:41 +01:00 committed by Thomas Petazzoni
parent 9511fe9b1c
commit 80fa5672da

View File

@ -18,7 +18,6 @@ RSYNC_CONF_OPTS = \
--with-included-zlib=no \
--with-included-popt=no \
--disable-roll-simd \
--disable-openssl \
--disable-md5-asm
ifeq ($(BR2_PACKAGE_ACL),y)
@ -34,6 +33,13 @@ else
RSYNC_CONF_OPTS += --disable-lz4
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
RSYNC_DEPENDENCIES += openssl
RSYNC_CONF_OPTS += --enable-openssl
else
RSYNC_CONF_OPTS += --disable-openssl
endif
ifeq ($(BR2_PACKAGE_XXHASH),y)
RSYNC_DEPENDENCIES += xxhash
RSYNC_CONF_OPTS += --enable-xxhash