diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-29 11:01:45 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-29 11:01:45 +0200 |
commit | 83c6493296a30a41138e2cb9a6a6d29fe9a7b5e8 (patch) | |
tree | b7fac1685fcfd234f4d24572713d5c585446e50b /configure.ac | |
parent | a7de1c0d81e67fba8c2fe78acdee23cf3a9e3699 (diff) | |
download | curl-83c6493296a30a41138e2cb9a6a6d29fe9a7b5e8.tar.gz |
configure: use "no" instead of "disabled" for the end summary
... for consistency but also to make them more distinctly stand out next
to the "enabled" lines.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 433a5c22b..db0621c18 100755 --- a/configure.ac +++ b/configure.ac @@ -3549,7 +3549,7 @@ case "$OPT_H2" in ;; esac -curl_h2_msg="disabled (--with-nghttp2)" +curl_h2_msg="no (--with-nghttp2)" if test X"$want_h2" != Xno; then dnl backup the pre-nghttp2 variables CLEANLDFLAGS="$LDFLAGS" @@ -3608,7 +3608,7 @@ dnl Check for ngtcp2 (QUIC) dnl ********************************************************************** OPT_TCP2="yes" -curl_h3_msg="disabled (--with-ngtcp2, --with-quiche)" +curl_h3_msg="no (--with-ngtcp2, --with-quiche)" if test "x$disable_http" = "xyes"; then # without HTTP, ngtcp2 is no use @@ -3636,7 +3636,7 @@ case "$OPT_TCP2" in ;; esac -curl_tcp2_msg="disabled (--with-ngtcp2)" +curl_tcp2_msg="no (--with-ngtcp2)" if test X"$want_tcp2" != Xno; then dnl backup the pre-ngtcp2 variables CLEANLDFLAGS="$LDFLAGS" @@ -3835,7 +3835,7 @@ case "$OPT_NGHTTP3" in ;; esac -curl_http3_msg="disabled (--with-nghttp3)" +curl_http3_msg="no (--with-nghttp3)" if test X"$want_nghttp3" != Xno; then dnl backup the pre-nghttp3 variables CLEANLDFLAGS="$LDFLAGS" |