summaryrefslogtreecommitdiff
path: root/server/external/libcares.m4
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-02-18 07:49:04 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-18 13:48:45 -0500
commit1c48b5a62f73234ed26bb20f0ab345ab61cda0ab (patch)
tree0b6cddd567a862e1a7b5df23764869782a62ca78 /server/external/libcares.m4
parent8c56df3176f528fe0260974b3bf934173c4651ea (diff)
downloadsssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.tar.gz
sssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.tar.bz2
sssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.zip
Rename server/ directory to src/
Also update BUILD.txt
Diffstat (limited to 'server/external/libcares.m4')
-rw-r--r--server/external/libcares.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/server/external/libcares.m4 b/server/external/libcares.m4
deleted file mode 100644
index 657deac5..00000000
--- a/server/external/libcares.m4
+++ /dev/null
@@ -1,20 +0,0 @@
-AC_SUBST(CARES_OBJ)
-AC_SUBST(CARES_LIBS)
-AC_SUBST(CARES_CFLAGS)
-
-AC_CHECK_HEADERS(ares.h,
- [AC_CHECK_LIB([cares], [ares_init], [ CARES_LIBS="-lcares" ], [AC_MSG_ERROR([No usable c-ares library found])])],
- [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
- ]
-)
-
-AM_CONDITIONAL(BUILD_ARES_DATA, test x$ares_data = x1)