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:
parent
9511fe9b1c
commit
80fa5672da
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user