aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2007-12-12 10:28:30 +0000
committerWerner Koch <[email protected]>2007-12-12 10:28:30 +0000
commitbae4b256c79c24e5306c692adf9bb5891433c7d5 (patch)
treec0aae4de008d75964074146240257f81b8ded0b1 /configure.ac
parentAllow decryption using type 20 Elgamal keys. (diff)
downloadgnupg-bae4b256c79c24e5306c692adf9bb5891433c7d5.tar.gz
gnupg-bae4b256c79c24e5306c692adf9bb5891433c7d5.zip
Support DSA2.
Support Camellia for testing. More audit stuff.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac22
1 files changed, 22 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 13714dace..95905449b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,6 +73,7 @@ have_libusb=no
use_bzip2=yes
use_exec=yes
disable_keyserver_path=no
+use_camellia=no
GNUPG_BUILD_PROGRAM(gpg, yes)
@@ -172,6 +173,21 @@ AC_ARG_ENABLE(bzip2,
use_bzip2=$enableval)
AC_MSG_RESULT($use_bzip2)
+# Check whether testing support for Camellia has been requested
+AC_MSG_CHECKING([whether to enable the CAMELLIA cipher for gpg])
+AC_ARG_ENABLE(camellia,
+ AC_HELP_STRING([--enable-camellia],[enable the CAMELLIA cipher for gpg]),
+ use_camellia=$enableval)
+AC_MSG_RESULT($use_camellia)
+if test x"$use_camellia" = xyes ; then
+ AC_DEFINE(USE_CAMELLIA,1,[Define to include the CAMELLIA cipher into gpg])
+ AC_MSG_WARN([[
+***
+*** The Camellia cipher for gpg is for testing only and
+*** is NOT for production use!
+***]])
+fi
+
# Configure option to allow or disallow execution of external
# programs, like a photo viewer.
@@ -1417,4 +1433,10 @@ echo "
gpg-check-pattern will not be build.
"
fi
+if test x"$use_camellia" = xyes ; then
+ echo
+ echo "WARNING: The Camellia cipher for gpg is for testing only"
+ echo " and is NOT for production use!"
+ echo
+fi