summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAndreas Metzler <ametzler@bebt.de>2018-07-07 14:20:01 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2018-07-07 19:30:49 +0200
commit39ffd2d902fcbd15535e9c3efed168950dbab6cf (patch)
treec456785c82a1b66cfde40e4d96574dc8d7300ac1 /m4
parentc27376064181a17811d23b5647d98d5656d8813e (diff)
downloadgnutls-39ffd2d902fcbd15535e9c3efed168950dbab6cf.tar.gz
configure: Fix progress message for --enable-tls13-support
Signed-off-by: Andreas Metzler <ametzler@bebt.de>
Diffstat (limited to 'm4')
-rw-r--r--m4/hooks.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index e997e1d30c..fcd6f9cd80 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -179,11 +179,11 @@ LIBTASN1_MINIMUM=4.9
[enable the TLS1.3 draft protocol by default]),
ac_enable_tls13=$enableval)
if test x$ac_enable_tls13 != xno; then
- AC_MSG_RESULT(no)
+ AC_MSG_RESULT(yes)
AC_DEFINE([ENABLE_TLS13], 1, [enable TLS1.3 support])
else
ac_full=0
- AC_MSG_RESULT(yes)
+ AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(ENABLE_TLS13, test "$ac_enable_tls13" != "no")