diff options
author | Werner Koch <wk@gnupg.org> | 2007-01-31 15:24:41 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-01-31 15:24:41 +0100 |
commit | b861561e4791244a21fc118ec45f4c6afe71044b (patch) | |
tree | b88c2c6f95cca85116747b3e746f0d765b622c2a /agent | |
parent | Added LIBINTL to more Makefile targets. (diff) | |
download | gnupg2-b861561e4791244a21fc118ec45f4c6afe71044b.tar.xz gnupg2-b861561e4791244a21fc118ec45f4c6afe71044b.zip |
Included LIBICONV in all Makefiles.
g10/
* passphrase.c (passphrase_get): Set the cancel flag on all error
from the agent. Fixes a bug reported by Tom Duerbusch.
sm/
* gpgsm.c (main): Let --gen-key print a more informative error
message.
Diffstat (limited to 'agent')
-rw-r--r-- | agent/ChangeLog | 4 | ||||
-rw-r--r-- | agent/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog index 39f02b115..86f4569a0 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,7 @@ +2007-01-31 Werner Koch <wk@g10code.com> + + * Makefile.am (t_common_ldadd): Add LIBICONV. + 2007-01-25 Werner Koch <wk@g10code.com> * genkey.c (check_passphrase_constraints): Get ngettext call right diff --git a/agent/Makefile.am b/agent/Makefile.am index 6ec0068ca..b79423a7c 100644 --- a/agent/Makefile.am +++ b/agent/Makefile.am @@ -83,7 +83,7 @@ $(PROGRAMS): $(common_libs) $(commonpth_libs) $(pwquery_libs) TESTS = t-protect t_common_ldadd = $(common_libs) \ - $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) + $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) t_protect_SOURCES = t-protect.c protect.c t_protect_LDADD = $(t_common_ldadd) |