diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-03-21 21:19:36 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-03-21 21:19:36 +0000 |
commit | b35e44dde111bdd9eda09308693c8aa90abd46e3 (patch) | |
tree | b61541b46be1efb689f2de4080c15a059a6b851a /configure.in | |
parent | c7e43cae600f042aa6450ba713cb35b2e7aa6289 (diff) | |
download | gnutls-b35e44dde111bdd9eda09308693c8aa90abd46e3.tar.gz |
*** empty log message ***
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 17 |
1 files changed, 15 insertions, 2 deletions
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 + |