summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-03-29 09:55:36 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2017-04-05 11:40:50 +0200
commit714e81625fbbe3988c42e330624ac12559320c0f (patch)
treebf2cb5230d0cf327af7305ed11d0c41af265c0e7 /m4
parent9e400c33104e9f2e394e8914e7d6138e623da19e (diff)
downloadgnutls-714e81625fbbe3988c42e330624ac12559320c0f.tar.gz
OpenPGP authentication is disabled by default
The flag --enable-openpgp-authenticationcan be used to revert this change. Resolves #178 Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'm4')
-rw-r--r--m4/hooks.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index 1c4f5b50ce..e48850fa4a 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -302,11 +302,11 @@ LIBTASN1_MINIMUM=4.9
fi
AM_CONDITIONAL(ENABLE_ECDHE, test "$ac_enable_ecdhe" != "no")
- ac_enable_openpgp=yes
- AC_MSG_CHECKING([whether to disable OpenPGP Certificate authentication support])
+ ac_enable_openpgp=no
+ AC_MSG_CHECKING([whether to enable OpenPGP Certificate authentication support])
AC_ARG_ENABLE(openpgp-authentication,
- AS_HELP_STRING([--disable-openpgp-authentication],
- [disable the OpenPGP authentication support]),
+ AS_HELP_STRING([--enable-openpgp-authentication],
+ [enable the OpenPGP authentication support]),
ac_enable_openpgp=$enableval)
if test x$ac_enable_openpgp = xno; then
AC_MSG_RESULT(yes)