diff options
author | Justus Winter <[email protected]> | 2016-08-11 10:26:09 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-08-11 10:49:30 +0000 |
commit | 14479e2515439c73e385f37e8c2b3fc517b038b9 (patch) | |
tree | 179c37c1dd47b48e26447acb9a4955f4b6205ccd /tools | |
parent | common: Remove simple password query error codes. (diff) | |
download | gnupg-14479e2515439c73e385f37e8c2b3fc517b038b9.tar.gz gnupg-14479e2515439c73e385f37e8c2b3fc517b038b9.zip |
common: Rework the simple password query module.
* common/simple-pwquery.c (writen, readline): Drop.
(agent_send_option, agent_send_all_options, agent_open): Just use
libassuan.
(simple_pw_set_socket): Simplify.
(default_inq_cb): New function.
(simple_pwquery, simple_query): Just use libassuan.
* agent/Makefile.am (gpg_preset_passphrase_LDADD): Add libassuan.
* tools/Makefile.am (symcryptrun_LDADD): Likewise.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index bc159d9d3..12e581526 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -113,7 +113,7 @@ gpgparsemail_LDADD = symcryptrun_SOURCES = symcryptrun.c symcryptrun_LDADD = $(LIBUTIL_LIBS) $(common_libs) $(pwquery_libs) \ $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) \ - $(LIBICONV) $(NETLIBS) $(W32SOCKLIBS) + $(LIBICONV) $(NETLIBS) $(W32SOCKLIBS) $(LIBASSUAN_LIBS) watchgnupg_SOURCES = watchgnupg.c watchgnupg_LDADD = $(NETLIBS) |