docs/INSTALL: remove mentions of configure --with-darwin-ssl
... as it isn't supported since a while back. Make configure fail with a warning if used. Reported-by: Vadim Grinshpun Bug: https://curl.se/mail/lib-2021-06/0008.html Closes #7200
This commit is contained in:
parent
ace3d91fcd
commit
9cf516adc6
@ -284,6 +284,9 @@ Select from these:
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_ARG_WITH(darwinssl,,
|
||||||
|
AC_MSG_ERROR([--with-darwin-ssl no longer works!]))
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Detect the canonical host and target build environment
|
dnl Detect the canonical host and target build environment
|
||||||
dnl
|
dnl
|
||||||
|
|||||||
@ -270,8 +270,8 @@ 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
|
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
|
implementation, Secure Transport, instead of OpenSSL. To build with Secure
|
||||||
Transport for SSL/TLS, use the configure option `--with-secure-transport`
|
Transport for SSL/TLS, use the configure option `--with-secure-transport`. (It
|
||||||
or `--with-darwin-ssl`. (It is not necessary to use the option `--without-openssl`.)
|
is not necessary to use the option `--without-openssl`.)
|
||||||
|
|
||||||
When Secure Transport is in use, the curl options `--cacert` and `--capath`
|
When Secure Transport is in use, the curl options `--cacert` and `--capath`
|
||||||
and their libcurl equivalents, will be ignored, because Secure Transport uses
|
and their libcurl equivalents, will be ignored, because Secure Transport uses
|
||||||
@ -291,7 +291,7 @@ export SDK=macosx
|
|||||||
export DEPLOYMENT_TARGET=10.8
|
export DEPLOYMENT_TARGET=10.8
|
||||||
|
|
||||||
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
||||||
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-darwin-ssl
|
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-secure-transport
|
||||||
make -j8
|
make -j8
|
||||||
make install
|
make install
|
||||||
```
|
```
|
||||||
@ -306,7 +306,7 @@ export SDK=iphoneos
|
|||||||
export DEPLOYMENT_TARGET=11.0
|
export DEPLOYMENT_TARGET=11.0
|
||||||
|
|
||||||
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
||||||
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-darwin-ssl
|
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-secure-transport
|
||||||
make -j8
|
make -j8
|
||||||
make install
|
make install
|
||||||
```
|
```
|
||||||
@ -319,7 +319,7 @@ export SDK=watchsimulator
|
|||||||
export DEPLOYMENT_TARGET=5.0
|
export DEPLOYMENT_TARGET=5.0
|
||||||
|
|
||||||
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
export CFLAGS="-arch $ARCH -isysroot $(xcrun -sdk $SDK --show-sdk-path) -m$SDK-version-min=$DEPLOYMENT_TARGET"
|
||||||
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-darwin-ssl
|
./configure --host=$ARCH-apple-darwin --prefix $(pwd)/artifacts --with-secure-transport
|
||||||
make -j8
|
make -j8
|
||||||
make install
|
make install
|
||||||
```
|
```
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user