From: Nikos Mavrogiannopoulos Date: Thu, 21 Mar 2002 21:19:36 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: gnutls_0_3_92~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b35e44dde111bdd9eda09308693c8aa90abd46e3;p=thirdparty%2Fgnutls.git *** empty log message *** --- diff --git a/configure.in b/configure.in index f6411d5e17..f36e359d52 100644 --- a/configure.in +++ b/configure.in @@ -248,7 +248,7 @@ else fi AC_MSG_CHECKING([whether to disable SRP authentication support]) -AC_ARG_ENABLE( srp, [ --disable-srp-authentication disable the SRP authentication support], +AC_ARG_ENABLE( srp, [ --disable-srp-authentication disable the SRP authentication support], ac_enable_srp=no ) if test x$ac_enable_srp != xno; then @@ -259,7 +259,7 @@ else fi AC_MSG_CHECKING([whether to disable anonymous authentication support]) -AC_ARG_ENABLE( srp, [ --disable-anon-authentication disable the anonymous authentication support], +AC_ARG_ENABLE( srp, [ --disable-anon-authentication disable the anonymous authentication support], ac_enable_anon=no ) if test x$ac_enable_anon != xno; then @@ -270,6 +270,19 @@ else fi +AC_MSG_CHECKING([whether to disable OpenPGP Certificate authentication support]) +AC_ARG_ENABLE( srp, [ --disable-openpgp-authentication disable the OpenPGP authentication support], + ac_enable_openpgp=no +) +if test x$ac_enable_openpgp != xno; then + AC_MSG_RESULT(no) + AC_CHECK_LIB(opencdk, cdk_iobuf_new,,AC_MSG_WARN( +*** +*** OPENCDK was not found. You will not be able to use OpenPGP keys with gnutls.)) +else + AC_MSG_RESULT(yes) +fi +