From 4ba3d8bd00d40af32dcb83444f2c0ee5005886c8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 19 Jan 2011 21:27:06 +0100 Subject: [PATCH] configure: TLS-SRP wasn't added as a feature Test case 1014 failed since TLS-SRP was correctly set to the features variable so curl-config --features didn't output it. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index e3b69d0fa..55f4ea7fe 100644 --- a/configure.ac +++ b/configure.ac @@ -2689,6 +2689,7 @@ AC_HELP_STRING([--disable-tls-srp],[Disable TLS-SRP authentication]), if test "$want_tls_srp" = "yes" && test "x$HAVE_GNUTLS_SRP" = "x1"; then AC_DEFINE(USE_TLS_SRP, 1, [Use TLS-SRP authentication]) + USE_TLS_SRP=1 curl_tls_srp_msg="enabled" fi