* configure.ac: Big warning that TIGER/192 is being removed from the

standard, and make it disabled by default.

* README: Put back proper copyright line.  Remove mention of TIGER/192.
This commit is contained in:
David Shaw 2003-04-23 22:57:49 +00:00
parent 874214d0a0
commit 8bb4628d05
3 changed files with 27 additions and 6 deletions

View File

@ -1,3 +1,11 @@
2003-04-23 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Big warning that TIGER/192 is being removed from
the standard, and make it disabled by default.
* README: Put back proper copyright line. Remove mention of
TIGER/192.
2003-04-15 Werner Koch <wk@gnupg.org>
* configure.ac (HAVE_DOSISH_SYSTEM): New automake conditional.

4
README
View File

@ -3,7 +3,8 @@
-------------------------------
Version 1.3.2
Copyright 1998-2003 Free Software Foundation, Inc.
Copyright 1998, 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
@ -528,7 +529,6 @@
--disable-blowfish
--disable-aes
--disable-twofish
--disable-tiger192
--disable-sha256
--disable-sha512
Removes support for the selected algorithm. This

View File

@ -120,7 +120,7 @@ use_cast5=yes
use_blowfish=yes
use_aes=yes
use_twofish=yes
use_tiger192=yes
use_tiger192=no
use_sha256=yes
use_sha512=yes
use_exec=yes
@ -132,7 +132,6 @@ AC_ARG_ENABLE(minimal,
use_blowfish=no
use_aes=no
use_twofish=no
use_tiger192=no
use_sha256=no
use_sha512=no
use_exec=no)
@ -200,13 +199,27 @@ if test x"$use_twofish" = xyes ; then
AC_DEFINE(USE_TWOFISH,1,[Define to include the TWOFISH cipher])
fi
dnl TIGER192 is defined only after we confirm 64-bit support later
dnl this is because the stable branch calls it just "tiger".
AC_ARG_ENABLE(tiger,,use_tiger192=$enableval)
dnl TIGER192 is actually defined only after we confirm 64-bit support
dnl later
AC_MSG_CHECKING([whether to enable the TIGER/192 digest])
AC_ARG_ENABLE(tiger192,
AC_HELP_STRING([--disable-tiger192],[disable the TIGER/192 digest]),
AC_HELP_STRING([--enable-tiger192],[enable the TIGER/192 digest]),
use_tiger192=$enableval)
AC_MSG_RESULT($use_tiger192)
if test x"$use_tiger192" = xyes ; then
AC_MSG_WARN([[
***
*** The TIGER/192 digest is in the process of being removed from the
*** OpenPGP standard. While it hasn't been removed from GnuPG yet, it
*** will be removed in a future version. For the sake of future
*** compatibility, please do not use this digest.
***]])
fi
AC_MSG_CHECKING([whether to enable the SHA-256 digest])
AC_ARG_ENABLE(sha256,
AC_HELP_STRING([--disable-sha256],[disable the SHA-256 digest]),