diff options
author | Werner Koch <wk@gnupg.org> | 2011-03-08 12:23:59 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-03-08 12:23:59 +0100 |
commit | 327af90594204db9683fcee5c8c6b8098c8da37a (patch) | |
tree | 1ef036bbadb924c19d24c3b75a299c3efa012f95 /tools | |
parent | Added option --inquire to PRESET_PASSPHRASE. Note that the inquired passphras... (diff) | |
download | gnupg2-327af90594204db9683fcee5c8c6b8098c8da37a.tar.xz gnupg2-327af90594204db9683fcee5c8c6b8098c8da37a.zip |
Require libgcrypt 1.5
Without Libgcrypt 1.5 is was not possible to use ECC keys. ECC is
major new feature and thus it does not make sense to allow building
with an older Libgcrypt without supporting ECC.
Also fixed a few missing prototypes.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/symcryptrun.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index ae591dbfd..38888022c 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2011-03-08 Werner Koch <wk@g10code.com> + + * symcryptrun.c [HAVE_UTMP_H]: Include utmp.h. + 2011-02-23 Werner Koch <wk@g10code.com> * gpgconf.c: Add command --kill. diff --git a/tools/symcryptrun.c b/tools/symcryptrun.c index 1d882a1d5..c75f637e6 100644 --- a/tools/symcryptrun.c +++ b/tools/symcryptrun.c @@ -74,6 +74,9 @@ #ifdef HAVE_PTY_H #include <pty.h> #endif +#ifdef HAVE_UTMP_H +#include <utmp.h> +#endif #include <ctype.h> #ifdef HAVE_LOCALE_H #include <locale.h> |