diff options
author | Werner Koch <[email protected]> | 2010-08-09 15:40:29 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-08-09 15:40:29 +0000 |
commit | e52f93433cb409e15e4b2a4e1f043267e0f57ddd (patch) | |
tree | 6a5cff3e69c1ae277e29f87574dee9a48059162c /agent | |
parent | Add dummy options --cms and --openpgp. (diff) | |
download | gnupg-e52f93433cb409e15e4b2a4e1f043267e0f57ddd.tar.gz gnupg-e52f93433cb409e15e4b2a4e1f043267e0f57ddd.zip |
Support logging via TCP
Diffstat (limited to 'agent')
-rw-r--r-- | agent/ChangeLog | 5 | ||||
-rw-r--r-- | agent/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog index c4aa1c299..a9b67a80a 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,8 @@ +2010-08-09 Werner Koch <[email protected]> + + * Makefile.am (t_common_ldadd): Add NETLIBS for sake of the TCP + logging. + 2010-06-24 Werner Koch <[email protected]> * genkey.c (check_passphrase_pattern): Use HANG option for diff --git a/agent/Makefile.am b/agent/Makefile.am index e22153681..abd39bed8 100644 --- a/agent/Makefile.am +++ b/agent/Makefile.am @@ -105,8 +105,8 @@ $(PROGRAMS): $(common_libs) $(commonpth_libs) $(pwquery_libs) # TESTS = t-protect -t_common_ldadd = $(common_libs) \ - $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) +t_common_ldadd = $(common_libs) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ + $(LIBINTL) $(LIBICONV) $(NETLIBS) t_protect_SOURCES = t-protect.c protect.c t_protect_LDADD = $(t_common_ldadd) |