From e92f0e32b06210988cf7fb0d8334dc1594c72820 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 15 Sep 2016 13:15:49 -0700 Subject: [PATCH] Undo making the ECC supported curves extension default to enabled. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d356c1c04..7068b474c 100644 --- a/configure.ac +++ b/configure.ac @@ -1944,9 +1944,9 @@ fi # Supported Elliptic Curves Extensions AC_ARG_ENABLE([supportedcurves], - [AS_HELP_STRING([--enable-supportedcurves],[Enable Supported Elliptic Curves (default: enabled)])], + [AS_HELP_STRING([--enable-supportedcurves],[Enable Supported Elliptic Curves (default: disabled)])], [ ENABLED_SUPPORTED_CURVES=$enableval ], - [ ENABLED_SUPPORTED_CURVES=yes ] + [ ENABLED_SUPPORTED_CURVES=no ] ) if test "x$ENABLED_SUPPORTED_CURVES" = "xyes"