1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-24 15:31:41 +02:00

* configure.ac: Make "new" the default for TIGER. Still use

--enable-new-tiger to select new from autoconf.
This commit is contained in:
David Shaw 2002-10-02 19:52:41 +00:00
parent 457eb4946f
commit 129cad6aaf
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2002-10-02 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Make "new" the default for TIGER. Still use
--enable-new-tiger to select new from autoconf.
* configure.ac: Use a new option (--enable-new-tiger) to enable
TIGER with the correct OID.

View File

@ -144,6 +144,7 @@ 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])
else
AC_MSG_CHECKING([whether to enable new-style experimental TIGER digest support])
AC_ARG_ENABLE(new-tiger,
@ -153,7 +154,6 @@ else
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_NEW_TIGER,1,[Define to use the newly defined OID for TIGER digest support])
fi
fi