1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* configure.ac: Add an --enable-tiger.

* NEWS: Clarify new permission checks.
This commit is contained in:
David Shaw 2002-08-08 19:38:59 +00:00
parent c3f1100411
commit fcdd2ec92f
3 changed files with 25 additions and 0 deletions

View file

@ -131,6 +131,16 @@ 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_ARG_ENABLE(tiger,
[ --enable-tiger enable experimental TIGER 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])
fi
AC_MSG_CHECKING([whether to enable external program execution])
AC_ARG_ENABLE(exec,
[ --disable-exec disable all external program execution],