Ticket #38369: macports-curl-darwinssl.patch
File macports-curl-darwinssl.patch, 1.7 KB (added by macports-trac-phil@…, 12 years ago) |
---|
-
Portfile
old new 48 48 --without-polarssl \ 49 49 --without-spnego \ 50 50 --without-ssl \ 51 --without-darwinssl \ 51 52 --disable-ares \ 52 53 --disable-ldap \ 53 54 --disable-ldaps \ … … 118 119 configure.args-append --enable-ares 119 120 } 120 121 121 variant gnutls conflicts ssl description {Allow secure connections using GNU TLS} {122 variant gnutls conflicts ssl conflicts darwinssl description {Allow secure connections using GNU TLS} { 122 123 depends_lib-append port:gnutls 123 124 configure.args-delete --without-gnutls 124 125 configure.args-append --with-gnutls … … 152 153 configure.args-append --with-spnego=${prefix} 153 154 } 154 155 155 variant ssl conflicts gnutls description {Allow secure connections using OpenSSL} {156 variant ssl conflicts gnutls conflicts darwinssl description {Allow secure connections using OpenSSL} { 156 157 depends_lib-append port:openssl \ 157 158 port:curl-ca-bundle 158 159 configure.args-delete --without-ssl … … 160 161 --with-ca-bundle=${prefix}/share/curl/curl-ca-bundle.crt 161 162 } 162 163 164 variant darwinssl conflicts ssl conflicts gnutls description {Allow secure connections using Darwin Secure Transport} { 165 configure.args-delete --without-darwinssl 166 configure.args-append --with-darwinssl 167 } 168 163 169 if {![variant_isset gnutls]} { 164 170 default_variants +ssl 165 171 }