summaryrefslogtreecommitdiffstats
path: root/ftp
diff options
context:
space:
mode:
authorIsmael Luceno2022-08-10 16:10:54 +0200
committerIsmael Luceno2022-08-10 16:10:54 +0200
commitb4c55e81565df328c59f77dcd8e93dbd1462cf0b (patch)
treea0805123bd1217422ddc1e6192d0cef85121ec94 /ftp
parent39e206bf332b57b1acc62f6d29610ac473bb7c0e (diff)
curl: Replace polarssl with mbedtls
Diffstat (limited to 'ftp')
-rwxr-xr-xftp/curl/CONFIGURE2
-rwxr-xr-xftp/curl/DEPENDS14
-rw-r--r--ftp/curl/HISTORY3
3 files changed, 11 insertions, 8 deletions
diff --git a/ftp/curl/CONFIGURE b/ftp/curl/CONFIGURE
index 308a954ab8..ec81b65943 100755
--- a/ftp/curl/CONFIGURE
+++ b/ftp/curl/CONFIGURE
@@ -1 +1 @@
-config_query_list CURL_SSL "Which SSL lib do you want?" none libressl openssl gnutls nss polarssl
+config_query_list CURL_SSL "Which SSL lib do you want?" none libressl openssl gnutls nss mbedtls
diff --git a/ftp/curl/DEPENDS b/ftp/curl/DEPENDS
index 9d381117b3..77603c63d7 100755
--- a/ftp/curl/DEPENDS
+++ b/ftp/curl/DEPENDS
@@ -5,25 +5,25 @@ case $CURL_SSL in
gnutls)
depends gnutls \
"--with-gnutls \
- --without-ssl --without-nss --without-polarssl"
+ --without-ssl --without-nss --without-mbedtls"
;;
libressl | openssl)
depends SSL \
"--with-ssl \
- --without-gnutls --without-nss --without-polarssl"
+ --without-gnutls --without-nss --without-mbedtls"
;;
nss)
depends -sub PEM nss \
"--with-nss \
- --without-gnutls --without-ssl --without-polarssl"
+ --without-gnutls --without-ssl --without-mbedtls"
;;
- polarssl)
- depends polarssl \
- "--with-polarssl \
+ mbedtls | polarssl)
+ depends mbedtls \
+ "--with-mbedtls \
--without-ssl --without-nss --without-gnutls"
;;
none)
- OPTS+=" --without-gnutls --without-nss --without-ssl"
+ OPTS+=" --without-mbedtls --without-gnutls --without-nss --without-ssl"
;;
esac &&
diff --git a/ftp/curl/HISTORY b/ftp/curl/HISTORY
index 960753e78a..24e4be1a5c 100644
--- a/ftp/curl/HISTORY
+++ b/ftp/curl/HISTORY
@@ -1,3 +1,6 @@
+2022-08-10 Ismael Luceno <ismael@sourcemage.org>
+ * CONFIGURE, DEPENDS: replaced polarssl with mbedtls
+
2022-06-27 Florian Franzmann <bwlf@bandrate.org>
* DETAILS: version 7.84.0