mirror of
git://git.gnupg.org/gnupg.git
synced 2025-05-24 16:43:28 +02:00
* README, configure.ac: Add --enable-backsigs to enable the experimental
backsigs code.
This commit is contained in:
parent
69ef25f8d6
commit
4509cb7b1c
@ -1,3 +1,8 @@
|
|||||||
|
2004-11-04 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* README, configure.ac: Add --enable-backsigs to enable the
|
||||||
|
experimental backsigs code.
|
||||||
|
|
||||||
2004-10-28 Werner Koch <wk@g10code.com>
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
Released 1.3.92.
|
Released 1.3.92.
|
||||||
|
8
README
8
README
@ -615,6 +615,14 @@
|
|||||||
the use of iconv. Note, that iconv is also
|
the use of iconv. Note, that iconv is also
|
||||||
disabled if getext has been disabled.
|
disabled if getext has been disabled.
|
||||||
|
|
||||||
|
--enable-backsigs
|
||||||
|
Enables "backsigs" support. This is a currently
|
||||||
|
experimental solution to a subtle OpenPGP protocol
|
||||||
|
problem involving signing subkeys. It is
|
||||||
|
specified in the 2440bis drafts that will become
|
||||||
|
the new OpenPGP standard, but is not finalized yet
|
||||||
|
and has not had interoperability testing. Use at
|
||||||
|
your own risk.
|
||||||
|
|
||||||
|
|
||||||
Installation Problems
|
Installation Problems
|
||||||
|
@ -131,6 +131,12 @@ AC_ARG_ENABLE(gnupg-iconv,
|
|||||||
gnupg_use_iconv=$enableval, gnupg_use_iconv=yes)
|
gnupg_use_iconv=$enableval, gnupg_use_iconv=yes)
|
||||||
AC_MSG_RESULT($gnupg_use_iconv)
|
AC_MSG_RESULT($gnupg_use_iconv)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to enable the experimental backsigs code])
|
||||||
|
AC_ARG_ENABLE(backsigs,
|
||||||
|
AC_HELP_STRING([--enable-backsigs],
|
||||||
|
[enable the experimental backsigs code]),
|
||||||
|
do_backsigs=$enableval, do_backsigs=no)
|
||||||
|
AC_MSG_RESULT($do_backsigs)
|
||||||
|
|
||||||
dnl See if we are disabling any algorithms or features for a smaller
|
dnl See if we are disabling any algorithms or features for a smaller
|
||||||
dnl binary
|
dnl binary
|
||||||
@ -751,6 +757,9 @@ if test "$gnupg_use_iconv" = yes ; then
|
|||||||
AC_DEFINE(USE_GNUPG_ICONV,1,[Define to use the new iconv based code])
|
AC_DEFINE(USE_GNUPG_ICONV,1,[Define to use the new iconv based code])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$do_backsigs" = yes ; then
|
||||||
|
AC_DEFINE(DO_BACKSIGS,1,[Define to enable the experimental backsigs code])
|
||||||
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_CARD_SUPPORT, test "$card_support" = yes)
|
AM_CONDITIONAL(ENABLE_CARD_SUPPORT, test "$card_support" = yes)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user