summaryrefslogtreecommitdiffstats
path: root/src/external
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-12-15 01:39:42 +0100
committerJakub Hrozek <jhrozek@redhat.com>2015-02-11 11:12:04 +0100
commit5594736ea2618bb3e487f47fd199e1d2cf4c58fd (patch)
tree20e4f3303994f7855b80aca3038507e38193b424 /src/external
parentbf54fbed126ec3d459af40ea370ffadacd31c76d (diff)
downloadsssd-5594736ea2618bb3e487f47fd199e1d2cf4c58fd.tar.gz
sssd-5594736ea2618bb3e487f47fd199e1d2cf4c58fd.tar.xz
sssd-5594736ea2618bb3e487f47fd199e1d2cf4c58fd.zip
RESOLV: Remove obsolete in-tree implementation of SRV and TXT parsing
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 <pbrezina@redhat.com>
Diffstat (limited to 'src/external')
-rw-r--r--src/external/libcares.m414
1 files changed, 0 insertions, 14 deletions
diff --git a/src/external/libcares.m4 b/src/external/libcares.m4
index b235ee215..0a764d34c 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 <ares.h>])