From: Nikos Mavrogiannopoulos Date: Tue, 4 Mar 2014 19:06:33 +0000 (+0100) Subject: re-introduced rsa-export configure option X-Git-Tag: gnutls_3_3_0pre0~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1c626eacd165cda618f3133be98211aa9ce8849;p=thirdparty%2Fgnutls.git re-introduced rsa-export configure option This broke backwards compatibility. Reported by Andreas Metzler. --- diff --git a/m4/hooks.m4 b/m4/hooks.m4 index 301f256dbd..4340e0db19 100644 --- a/m4/hooks.m4 +++ b/m4/hooks.m4 @@ -158,6 +158,20 @@ AC_MSG_ERROR([[ fi AM_CONDITIONAL(ENABLE_ALPN, test "$ac_enable_alpn" != "no") + AC_MSG_CHECKING([whether to disable RSA-EXPORT support]) + AC_ARG_ENABLE(rsa-export, + AS_HELP_STRING([--disable-rsa-export], + [disable the RSA-EXPORT support]), + ac_enable_rsa_export=$enableval, ac_enable_rsa_export=yes) + if test x$ac_enable_rsa_export != xno; then + AC_MSG_RESULT(no) + AC_DEFINE([ENABLE_RSA_EXPORT], 1, [enable RSA-EXPORT]) + else + ac_full=0 + AC_MSG_RESULT(yes) + fi + AM_CONDITIONAL(ENABLE_RSA_EXPORT, test "$ac_enable_rsa_export" != "no") + ac_enable_heartbeat=yes AC_MSG_CHECKING([whether to disable TLS heartbeat support]) AC_ARG_ENABLE(heartbeat-support,