mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
* configure.ac: "TIGER" -> "TIGER/192".
* README: Put back proper copyright line.
This commit is contained in:
parent
7ad4e2db30
commit
c192355ff1
@ -1,3 +1,9 @@
|
||||
2003-04-23 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* configure.ac: "TIGER" -> "TIGER/192".
|
||||
|
||||
* README: Put back proper copyright line.
|
||||
|
||||
2003-04-16 Werner Koch <wk@gnupg.org>
|
||||
|
||||
Released 1.2.2rc2.
|
||||
|
4
README
4
README
@ -3,7 +3,8 @@
|
||||
-------------------------------
|
||||
Version 1.2.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
|
||||
@ -655,4 +656,3 @@
|
||||
|
||||
Commercial grade support for GnuPG is available; please see
|
||||
the GNU service directory or search other resources.
|
||||
|
||||
|
16
configure.ac
16
configure.ac
@ -137,31 +137,31 @@ if test "$use_m_guard" = yes ; then
|
||||
AC_DEFINE(M_GUARD,1,[Define to use the (obsolete) malloc guarding feature])
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([whether to enable experimental TIGER digest support])
|
||||
AC_MSG_CHECKING([whether to enable experimental TIGER/192 digest support])
|
||||
AC_ARG_ENABLE(tiger,
|
||||
[ --enable-tiger enable experimental TIGER digest support],
|
||||
[ --enable-tiger enable experimental TIGER/192 digest support],
|
||||
use_tiger=$enableval, use_tiger=no)
|
||||
AC_MSG_RESULT($use_tiger)
|
||||
if test "$use_tiger" = yes ; then
|
||||
AC_SUBST(TIGER_O,tiger.o)
|
||||
AC_DEFINE(USE_TIGER,1,[Define to include experimental TIGER digest support])
|
||||
AC_DEFINE(USE_OLD_TIGER,1,[Define to use the old fake OID for TIGER digest support])
|
||||
AC_DEFINE(USE_TIGER,1,[Define to include experimental TIGER/192 digest support])
|
||||
AC_DEFINE(USE_OLD_TIGER,1,[Define to use the old fake OID for TIGER/192 digest support])
|
||||
else
|
||||
AC_MSG_CHECKING([whether to enable new-style experimental TIGER digest support])
|
||||
AC_MSG_CHECKING([whether to enable new-style experimental TIGER/192 digest support])
|
||||
AC_ARG_ENABLE(new-tiger,
|
||||
[ --enable-new-tiger enable new-style experimental TIGER digest support],
|
||||
[ --enable-new-tiger enable new-style experimental TIGER/192 digest support],
|
||||
use_new_tiger=$enableval, use_new_tiger=no)
|
||||
AC_MSG_RESULT($use_new_tiger)
|
||||
if test "$use_new_tiger" = yes ; then
|
||||
AC_SUBST(TIGER_O,tiger.o)
|
||||
AC_DEFINE(USE_TIGER,1,[Define to include experimental TIGER digest support])
|
||||
AC_DEFINE(USE_TIGER,1,[Define to include experimental TIGER/192 digest support])
|
||||
fi
|
||||
fi
|
||||
|
||||
if test x"$use_tiger" = xyes || test x"$use_new_tiger" = xyes ; then
|
||||
AC_MSG_WARN([[
|
||||
***
|
||||
*** The TIGER digest is in the process of being removed from the
|
||||
*** 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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user