From 5594736ea2618bb3e487f47fd199e1d2cf4c58fd Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mon, 15 Dec 2014 01:39:42 +0100 Subject: RESOLV: Remove obsolete in-tree implementation of SRV and TXT parsing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SSSD contained several backwards-compatible definitions of SRV and TXT APIs as well as structures that carry TTL data. These were intended for RHEL-5 and older releases. Since we don't support those upstream, it's better to remove the code -- it has drifted apart from upstream anyway. Reviewed-by: Pavel Březina --- src/external/libcares.m4 | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/external') diff --git a/src/external/libcares.m4 b/src/external/libcares.m4 index b235ee21..0a764d34 100644 --- a/src/external/libcares.m4 +++ b/src/external/libcares.m4 @@ -13,17 +13,3 @@ AS_IF([test x"$found_libcares" != xyes], [-L$sss_extra_libdir])], [AC_MSG_ERROR([c-ares header files are not installed])])] ) - -dnl Check if this particular version of c-ares supports the generic ares_free_data function -AC_CHECK_LIB([cares], - [ares_free_data], - [AC_DEFINE([HAVE_ARES_DATA], 1, [Does c-ares have ares_free_data()?]) - ], - [ares_data=1], - [$CARES_LIBS] -) - -AM_CONDITIONAL(BUILD_ARES_DATA, test x$ares_data = x1) - -dnl Check if this particular version of c-ares support the new TTL structures -AC_CHECK_TYPES([struct ares_addrttl, struct ares_addr6ttl], [], [], [#include ]) -- cgit