mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
* configure.ac: Add an --enable-tiger.
* NEWS: Clarify new permission checks.
This commit is contained in:
parent
c3f1100411
commit
fcdd2ec92f
@ -1,3 +1,9 @@
|
||||
2002-08-08 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* configure.ac: Add an --enable-tiger.
|
||||
|
||||
* NEWS: Clarify new permission checks.
|
||||
|
||||
2002-08-07 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* configure.ac: If the static IDEA cipher is present, disable
|
||||
|
9
NEWS
9
NEWS
@ -1,6 +1,15 @@
|
||||
Noteworthy changes in version 1.1.92
|
||||
-------------------------------------------------
|
||||
|
||||
* The file permission and ownership checks on files have been
|
||||
clarified. Specifically, the homedir (usually ~/.gnupg) is
|
||||
checked to protect everything within it. If the user specifies
|
||||
keyrings outside this homedir, they are presumed to be shared
|
||||
keyrings and therefore *not* checked. Configuration files
|
||||
specified with the --options option and the IDEA cipher
|
||||
extension specified with --load-extension are checked, along
|
||||
with their enclosing directories.
|
||||
|
||||
* The default configuration file is now ~/.gnupg/gpg.conf. If an
|
||||
old ~/.gnupg/options is found it will still be used. This
|
||||
change is required to have more consistent naming scheme with
|
||||
|
10
configure.ac
10
configure.ac
@ -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],
|
||||
|
Loading…
x
Reference in New Issue
Block a user