summaryrefslogtreecommitdiffstats
path: root/ftp/rsync/DEPENDS
diff options
context:
space:
mode:
authorRemko van der Vossen2021-02-26 20:22:33 +0100
committerRemko van der Vossen2021-02-26 20:22:33 +0100
commit83413618c9d94bd03a2d3896d916424c2e041157 (patch)
tree38aeb72aacfb8a52006c697e18dc7c77a8628ba1 /ftp/rsync/DEPENDS
parent990e394f591b8d89f03069ce4edd89613d15d904 (diff)
rsync: optionally depends on SSL
Diffstat (limited to 'ftp/rsync/DEPENDS')
-rwxr-xr-xftp/rsync/DEPENDS13
1 files changed, 9 insertions, 4 deletions
diff --git a/ftp/rsync/DEPENDS b/ftp/rsync/DEPENDS
index f3594fd6ce..7ed7f82d10 100755
--- a/ftp/rsync/DEPENDS
+++ b/ftp/rsync/DEPENDS
@@ -19,11 +19,16 @@ optional_depends xxhash \
"to enable xxhash checksums" &&
optional_depends zstd \
- "" \
+ "--enable-zstd" \
"--disable-zstd" \
- "enable ztd compression support"
+ "enable ztd compression support" &&
optional_depends lz4 \
- "" \
+ "--enable-lz4" \
"--disable-lz4" \
- "enable lz4 compression support"
+ "enable lz4 compression support" &&
+
+optional_depends SSL \
+ "--enable-openssl" \
+ "--disable-openssl" \
+ "enable SSL support"