diff options
author | Werner Koch <wk@gnupg.org> | 2015-04-10 15:08:50 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2015-04-10 15:08:50 +0200 |
commit | c8bb5000d4c86a055348dc08352f573c599743a7 (patch) | |
tree | 99397d5f18d066852d56629cda3ac589b2eada62 /dirmngr/Makefile.am | |
parent | Remove obsolete directories from AM_CPPFLAGS. (diff) | |
download | gnupg2-c8bb5000d4c86a055348dc08352f573c599743a7.tar.xz gnupg2-c8bb5000d4c86a055348dc08352f573c599743a7.zip |
dirmngr,w32: Make it build for Windows.
* dirmngr/Makefile.am (t_common_ldadd): Add missing libs.
Diffstat (limited to 'dirmngr/Makefile.am')
-rw-r--r-- | dirmngr/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dirmngr/Makefile.am b/dirmngr/Makefile.am index d80dd6d6d..a8b1c5242 100644 --- a/dirmngr/Makefile.am +++ b/dirmngr/Makefile.am @@ -110,12 +110,14 @@ no-libgcrypt.c : $(top_srcdir)/tools/no-libgcrypt.c t_common_src = t-support.h # We need libcommontls, because we use the http functions. t_common_ldadd = $(libcommontls) $(libcommon) no-libgcrypt.o \ - $(GPG_ERROR_LIBS) $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(DNSLIBS) + $(GPG_ERROR_LIBS) $(NETLIBS) \ + $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \ + $(DNSLIBS) $(LIBINTL) $(LIBICONV) module_tests = t-ldap-parse-uri t_ldap_parse_uri_SOURCES = \ t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \ - $(t_common_src) + $(ldap_url) $(t_common_src) t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(PROGRAMS) : $(libcommon) $(libcommonpth) $(libcommontls) $(libcommontlsnpth) |