diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index dd0c77bc1..6d9449164 100644 --- a/configure.ac +++ b/configure.ac @@ -112,6 +112,7 @@ dnl binary try_extensions=no +use_rsa=yes use_idea=yes use_cast5=yes use_blowfish=yes @@ -124,6 +125,7 @@ use_exec=yes AC_ARG_ENABLE(minimal, AC_HELP_STRING([--enable-minimal],[build the smallest gpg binary possible]), + use_rsa=no use_idea=no use_cast5=no use_blowfish=no @@ -134,6 +136,15 @@ AC_ARG_ENABLE(minimal, use_bzip2=no use_exec=no) +AC_MSG_CHECKING([whether to enable the RSA public key algorithm]) +AC_ARG_ENABLE(rsa, + AC_HELP_STRING([--disable-rsa],[disable the RSA public key algorithm]), + use_rsa=$enableval) +AC_MSG_RESULT($use_rsa) +if test x"$use_rsa" = xyes ; then + AC_DEFINE(USE_RSA,1,[Define to include the RSA public key algorithm]) +fi + AC_MSG_CHECKING([whether to enable the IDEA cipher]) AC_ARG_ENABLE(idea, AC_HELP_STRING([--disable-idea],[disable the IDEA cipher]), |