* configure.ac: Add an --enable-old-tiger, to revert back to the

old OID.
This commit is contained in:
David Shaw 2002-10-02 20:05:37 +00:00
parent e8b0b6349b
commit 05e894545c
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-10-02 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Add an --enable-old-tiger, to revert back to the
old OID.
2002-09-27 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Remove --enable-tiger, as TIGER is now always

View File

@ -135,6 +135,15 @@ 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 old-style TIGER digest support])
AC_ARG_ENABLE(old-tiger,
[ --enable-old-tiger enable old-style TIGER digest support],
old_tiger=$enableval, old_tiger=no)
AC_MSG_RESULT($old_tiger)
if test "$old_tiger" = yes ; then
AC_DEFINE(USE_OLD_TIGER,1,[Define to use the old fake OID for TIGER digest support])
fi
AC_MSG_CHECKING([whether to enable external program execution])
AC_ARG_ENABLE(exec,
[ --disable-exec disable all external program execution],