diff options
author | Justus Winter <[email protected]> | 2016-09-27 15:45:52 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-09-27 15:45:52 +0000 |
commit | 20a16833ee2bb05f735377f705899302bcf2b4d3 (patch) | |
tree | a9a19f7b7a679508b8265756d27f5558a93c5eab | |
parent | build: Fix check for resolver library on macOS. (diff) | |
download | gnupg-20a16833ee2bb05f735377f705899302bcf2b4d3.tar.gz gnupg-20a16833ee2bb05f735377f705899302bcf2b4d3.zip |
build: Do not link gpg-connect-agent against npth.
* tools/Makefile.am: Do not link gpg-connect-agent against npth.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | tools/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 6df49f6e4..b2a274f0a 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -122,10 +122,9 @@ watchgnupg_SOURCES = watchgnupg.c watchgnupg_LDADD = $(NETLIBS) gpg_connect_agent_SOURCES = gpg-connect-agent.c -# FIXME: remove NPTH_LIBS (why do we need them at all?) gpg_connect_agent_LDADD = ../common/libgpgrl.a $(common_libs) \ $(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) \ - $(NPTH_LIBS) $(GPG_ERROR_LIBS) \ + $(GPG_ERROR_LIBS) \ $(LIBREADLINE) $(LIBINTL) $(NETLIBS) $(LIBICONV) \ $(resource_objs) |