diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-11-13 11:50:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-11-13 14:16:48 +0100 |
commit | ca847ba5cf735aed70751e74f5d3ee69734c91cd (patch) | |
tree | ed94ae485cf8e2bfc2998aa764d4aba6dc11d628 /.azure-pipelines.yml | |
parent | 72a63aa46615206034cb91bcb822351249efc714 (diff) | |
download | curl-ca847ba5cf735aed70751e74f5d3ee69734c91cd.tar.gz |
azure: make the "w/o HTTP/SMTP/IMAP" build disable SSL proper
The configure line would previously depend on a configure mistake using
--without-openssl that is fixed and now this configure line needs
adjusting to use --without-ssl.
Follow-up to b589696f0312d
Closes #8006
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 2fff67c3e..56b9d3ff9 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -64,7 +64,7 @@ stages: configure: --disable-ipv6 --with-openssl disable_http_smtp_imap: name: w/o HTTP/SMTP/IMAP - configure: --disable-http --disable-smtp --disable-imap --without-openssl + configure: --disable-http --disable-smtp --disable-imap --without-ssl disable_thredres: name: sync resolver configure: --disable-threaded-resolver --with-openssl |