Merge pull request #136946 from lukegb/staging-next

curl: reenable ca-fallback when not using wolfsslSupport
This commit is contained in:
Luke Granger-Brown 2021-09-07 02:46:10 +01:00 committed by GitHub
commit 8dbbdbc04e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ stdenv.mkDerivation rec {
"--without-ca-bundle"
"--without-ca-path"
# The build fails when using wolfssl with --with-ca-fallback
(lib.withFeature wolfsslSupport "ca-fallback")
(lib.withFeature (!wolfsslSupport) "ca-fallback")
"--disable-manual"
(lib.withFeatureAs sslSupport "ssl" openssl.dev)
(lib.withFeatureAs gnutlsSupport "gnutls" gnutls.dev)