From b6bf81803977318aad8b876a56a42e4a3ffbae6a Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Wed, 15 Jul 2009 18:21:15 +0200 Subject: Add ares helpers into sssd This patch adds ares parsing functions that are not yet upstreamed together with a private ares header file (ares_dns.h) that contains some necessary macros for parsing common structures in the replies. Users of these two parsing functions must also include the header files ares_parse_{srv,txt}_reply.h that contain the function and structures declarations that should eventually end up in upstream ares.h --- server/Makefile.am | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'server/Makefile.am') diff --git a/server/Makefile.am b/server/Makefile.am index 575f5212..4ee344bb 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -151,6 +151,13 @@ SSSD_TOOLS_OBJ = \ SSSD_RESOLV_OBJ = \ resolv/async_resolv.c +if BUILD_ARES_PARSE_SRV + SSSD_RESOLV_OBJ += resolv/ares/ares_parse_srv_reply.c +endif +if BUILD_ARES_PARSE_TXT + SSSD_RESOLV_OBJ += resolv/ares/ares_parse_txt_reply.c +endif + SSSD_LIBS = \ $(TALLOC_LIBS) \ @@ -200,7 +207,10 @@ dist_noinst_HEADERS = \ providers/ldap/sdap_async.h \ tools/tools_util.h \ krb5_plugin/sssd_krb5_locator_plugin.h \ - resolv/async_resolv.h + resolv/async_resolv.h \ + resolv/ares/ares_parse_srv_reply.h \ + resolv/ares/ares_parse_txt_reply.h + #################### # Program Binaries # -- cgit