diff options
author | Werner Koch <[email protected]> | 2022-02-03 20:53:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-02-03 20:54:09 +0000 |
commit | 137590fd8614a69cc60da3226cefc4495502ec26 (patch) | |
tree | c5fd1bd62b8713d002a2739706f44eacb2bdd2d0 | |
parent | dirmngr: Simplify --gpgconf-list output (diff) | |
download | gnupg-137590fd8614a69cc60da3226cefc4495502ec26.tar.gz gnupg-137590fd8614a69cc60da3226cefc4495502ec26.zip |
dirmngr: Allow building with non-standard ntbtls location.
* dirmngr/Makefile.am: Add missing -L and -I
--
-rw-r--r-- | dirmngr/Makefile.am | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dirmngr/Makefile.am b/dirmngr/Makefile.am index 0443d6689..ca24385ae 100644 --- a/dirmngr/Makefile.am +++ b/dirmngr/Makefile.am @@ -173,20 +173,21 @@ t_ldap_parse_uri_SOURCES = \ http.c http-common.c dns-stuff.c ldap-misc.c \ $(ldap_url) $(t_common_src) t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1 $(USE_C99_CFLAGS) \ - $(LIBGCRYPT_CFLAGS) \ + $(LIBGCRYPT_CFLAGS) $(NTBTLS_CFLAGS) \ $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS) $(KSBA_CFLAGS) -t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(DNSLIBS) +t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(KSBA_LIBS) $(DNSLIBS) t_ldap_misc_SOURCES = t-ldap-misc.c ldap-misc.c ldap-misc.h $(ldap_url) -t_ldap_misc_CFLAGS = -DWITHOUT_NPTH=1 $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS) +t_ldap_misc_CFLAGS = -DWITHOUT_NPTH=1 $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS) \ + $(NTBTLS_CFLAGS) t_ldap_misc_LDFLAGS = -t_ldap_misc_LDADD = $(libcommon) \ - $(GPG_ERROR_LIBS) $(LIBGCRYPT_LIBS) $(LDAPLIBS) \ - $(LBER_LIBS) $(LIBINTL) $(LIBICONV) $(NETLIBS) +t_ldap_misc_LDADD = $(libcommon) $(GPG_ERROR_LIBS) $(LIBGCRYPT_LIBS) \ + $(LDAPLIBS) $(LBER_LIBS) $(LIBINTL) \ + $(KSBA_LIBS) $(LIBICONV) $(NETLIBS) t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1 $(USE_C99_CFLAGS) \ - $(LIBGCRYPT_CFLAGS) \ + $(LIBGCRYPT_CFLAGS) $(NTBTLS_CFLAGS) \ $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS) t_dns_stuff_SOURCES = $(t_common_src) t-dns-stuff.c dns-stuff.c t_dns_stuff_LDADD = $(t_common_ldadd) $(DNSLIBS) |