diff options
author | Justus Winter <[email protected]> | 2016-03-01 14:07:29 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-03-01 14:08:47 +0000 |
commit | 9a1778abcae0a7afe33be8e02b6d9a909463cd54 (patch) | |
tree | 3f4ea5c9529eb2fc21dc4f2d8490bb145094a6c6 | |
parent | tools: Drop superfluous include. (diff) | |
download | gnupg-9a1778abcae0a7afe33be8e02b6d9a909463cd54.tar.gz gnupg-9a1778abcae0a7afe33be8e02b6d9a909463cd54.zip |
dirmngr: Add missing CFLAGS.
* dirmngr/Makefile.am (t_ldap_parse_uri_CFLAGS): Add
'GPG_ERROR_CFLAGS'.
(t_dns_stuff_CFLAGS): Likewise.
Signed-off-by: Justus Winter <[email protected]>
-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 1c74d1081..1e329907a 100644 --- a/dirmngr/Makefile.am +++ b/dirmngr/Makefile.am @@ -140,10 +140,12 @@ t_ldap_parse_uri_SOURCES = \ t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \ http.c dns-stuff.c \ $(ldap_url) $(t_common_src) -t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1 +t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1 \ + $(GPG_ERROR_CFLAGS) t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(DNSLIBS) -t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1 +t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1 \ + $(GPG_ERROR_CFLAGS) t_dns_stuff_SOURCES = t-dns-stuff.c dns-stuff.c t_dns_stuff_LDADD = $(t_common_ldadd) $(DNSLIBS) |