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 b589696f03

Closes #8006
This commit is contained in:
Daniel Stenberg 2021-11-13 11:50:59 +01:00
parent 72a63aa466
commit ca847ba5cf
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -64,7 +64,7 @@ stages:
configure: --disable-ipv6 --with-openssl configure: --disable-ipv6 --with-openssl
disable_http_smtp_imap: disable_http_smtp_imap:
name: w/o 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: disable_thredres:
name: sync resolver name: sync resolver
configure: --disable-threaded-resolver --with-openssl configure: --disable-threaded-resolver --with-openssl