2006-08-21 13:54:15 +00:00
|
|
|
AC_DEFUN([AM_PATH_LIBCARES],
|
|
|
|
[
|
|
|
|
AC_ARG_WITH([libcares-prefix],
|
|
|
|
[ --with-libcares-prefix=PREFIX Prefix where libcares installed (optional)],
|
|
|
|
[libcares_prefix=$withval],
|
|
|
|
[libcares_prefix=""])
|
|
|
|
|
|
|
|
if test "x$libcares_prefix" = "x"; then
|
|
|
|
libcares_prefix="/usr"
|
|
|
|
fi
|
|
|
|
|
|
|
|
libcares_prefix_lib=$libcares_prefix/lib
|
|
|
|
libcares_prefix_include=$libcares_prefix/include
|
|
|
|
|
|
|
|
LIBS_save=$LIBS
|
|
|
|
CPPFLAGS_save=$CPPFLAGS
|
|
|
|
|
|
|
|
LIBS="-L$libcares_prefix_lib $LIBS"
|
2007-11-25 04:41:31 +00:00
|
|
|
CPPFLAGS="-I$libcares_prefix_include -Wall $CPPFLAGS"
|
2006-08-21 13:54:15 +00:00
|
|
|
|
|
|
|
AC_CHECK_LIB([cares], [ares_init], [have_libcares=yes])
|
2007-11-25 04:41:31 +00:00
|
|
|
|
2008-09-09 12:49:11 +00:00
|
|
|
if test "x$have_libcares" != "xyes"; then
|
|
|
|
AC_CHECK_LIB([cares], [ares_init], [have_libcares=yes need_librt=yes], [],
|
|
|
|
[-lrt])
|
|
|
|
fi
|
|
|
|
|
2006-08-21 13:54:15 +00:00
|
|
|
if test "x$have_libcares" = "xyes"; then
|
2007-11-25 04:41:31 +00:00
|
|
|
|
|
|
|
AC_MSG_CHECKING([whether ares_host_callback accepts timeouts(c-ares >= 1.5)])
|
|
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
|
|
#include <ares.h>
|
|
|
|
|
|
|
|
void callback(void* arg, int status, int timeouts, struct hostent* host);
|
|
|
|
]],
|
|
|
|
[[
|
2010-10-28 13:32:28 +00:00
|
|
|
ares_gethostbyname((ares_channel)0, "foo", 0, callback, 0);
|
2007-11-25 04:41:31 +00:00
|
|
|
]])],
|
|
|
|
[have_libcares1_5=yes],
|
|
|
|
[have_libcares1_5=no])
|
|
|
|
AC_MSG_RESULT([$have_libcares1_5])
|
|
|
|
|
|
|
|
if test "x$have_libcares1_5" = "xyes"; then
|
|
|
|
AC_DEFINE([HAVE_LIBCARES1_5], [1], [Define 1 if ares_host_callback accepts timeouts(c-ares >= 1.5)])
|
|
|
|
fi
|
|
|
|
|
2006-08-21 13:54:15 +00:00
|
|
|
AC_DEFINE([HAVE_LIBCARES], [1], [Define to 1 if you have libcares.])
|
|
|
|
LIBCARES_LIBS="-L$libcares_prefix_lib -lcares"
|
2008-09-09 12:49:11 +00:00
|
|
|
if test "x$need_librt" = "xyes"; then
|
|
|
|
LIBCARES_LIBS="$LIBCARES_LIBS -lrt"
|
|
|
|
fi
|
2006-08-21 13:54:15 +00:00
|
|
|
LIBCARES_CPPFLAGS="-I$libcares_prefix_include"
|
|
|
|
AC_SUBST(LIBCARES_LIBS)
|
|
|
|
AC_SUBST(LIBCARES_CPPFLAGS)
|
|
|
|
fi
|
|
|
|
|
|
|
|
LIBS=$LIBS_save
|
|
|
|
CPPFLAGS=$CPPFLAGS_save
|
|
|
|
|
|
|
|
])
|