<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/a2a42ebee39ff3f98a8c9cfb8ef27775c9cdb8ba">https://github.com/macports/macports-ports/commit/a2a42ebee39ff3f98a8c9cfb8ef27775c9cdb8ba</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new a2a42ebee39 curl: fix +darwinssl variant
</span>a2a42ebee39 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit a2a42ebee39ff3f98a8c9cfb8ef27775c9cdb8ba
</span>Author: Vadim Grinshpun <vg23@cornell.edu>
AuthorDate: Sun Jun 13 10:46:35 2021 -0400

<span style='display:block; white-space:pre;color:#404040;'>    curl: fix +darwinssl variant
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    curl no longer supports --with-darwinssl, use --with-secure-transport; also, --with-ssl is really --with-openssl; --without-ssl means not SSL support at all
</span>---
 net/curl/Portfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/net/curl/Portfile b/net/curl/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index a0b94564936..032e8857d2d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/net/curl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/net/curl/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -60,7 +60,7 @@ if {${name} eq ${subport}} {
</span>                                 --without-nghttp2 \
                                 --without-nss \
                                 --without-ssl \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                                --without-darwinssl \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                --without-secure-transport \
</span>                                 --disable-ares \
                                 --disable-ldap \
                                 --disable-ldaps \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -147,7 +147,7 @@ if {${name} eq ${subport}} {
</span>     }
 
     variant darwinssl conflicts gnutls mbedtls ssl wolfssl description {Allow secure connections using Apple OS native TLS} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        configure.args-replace  --without-darwinssl --with-darwinssl
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        configure.args-replace  --without-secure-transport --with-secure-transport
</span>         configure.args-append   --without-ca-bundle
     }
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -207,7 +207,7 @@ if {${name} eq ${subport}} {
</span>     variant ssl conflicts darwinssl gnutls mbedtls wolfssl description {Allow secure connections using OpenSSL} {
         depends_lib-append      path:lib/libssl.dylib:openssl \
                                 path:share/curl/curl-ca-bundle.crt:curl-ca-bundle
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        configure.args-replace  --without-ssl --with-ssl=${prefix}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        configure.args-replace  --without-ssl --with-openssl=${prefix}
</span>         configure.args-append   --with-ca-bundle=${prefix}/share/curl/curl-ca-bundle.crt
     }
 
</pre><pre style='margin:0'>

</pre>