|
@@ -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
|