summaryrefslogtreecommitdiff
path: root/docs/INSTALL.md
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-08-07 17:11:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-08-07 17:14:44 +0200
commit4f24ab26aa1b0581635da55ab40cce047ec8d209 (patch)
treee0c8d86099094f9cad3ef444f6f5aed2b28d9bd1 /docs/INSTALL.md
parent265717d27117a722b2b3ccc5f38de722c3a79070 (diff)
downloadcurl-4f24ab26aa1b0581635da55ab40cce047ec8d209.tar.gz
TLS naming: fix more Winssl and Darwinssl leftoversbagder/tls-name-cleanups
The CMake option is now called CMAKE_USE_SCHANNEL The winbuild flag is USE_SCHANNEL The CI jobs and build scripts only use the new names and the new name options Tests now require 'Schannel' (when necessary)
Diffstat (limited to 'docs/INSTALL.md')
-rw-r--r--docs/INSTALL.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index 63d41421b..33b439ec5 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -258,9 +258,9 @@ Windows you should choose another SSL backend such as OpenSSL.
On modern Apple operating systems, curl can be built to use Apple's SSL/TLS
implementation, Secure Transport, instead of OpenSSL. To build with Secure
-Transport for SSL/TLS, use the configure option `--with-darwinssl`. (It is not
-necessary to use the option `--without-ssl`.) This feature requires iOS 5.0 or
-later, or OS X 10.5 ("Leopard") or later.
+Transport for SSL/TLS, use the configure option `--with-secure-transport`. (It
+is not necessary to use the option `--without-ssl`.) This feature requires iOS
+5.0 or later, or OS X 10.5 ("Leopard") or later.
When Secure Transport is in use, the curl options `--cacert` and `--capath`
and their libcurl equivalents, will be ignored, because Secure Transport uses
@@ -281,7 +281,7 @@ commands in curl's directory in the shell will build the code such that it
will run on cats as old as OS X 10.6 ("Snow Leopard") (using bash):
export MACOSX_DEPLOYMENT_TARGET="10.6"
- ./configure --with-darwinssl
+ ./configure --with-secure-transport
make
# Android