From cd612516bddec199f26b74496a31cd6c3a908558 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 12 Aug 2013 08:39:57 +0100 Subject: [PATCH] dns.c is the default resolver in ALL cases when we have a C99 compiler, not just when ipv6 is available. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1a01978bb8..148d093ee5 100644 --- a/configure.ac +++ b/configure.ac @@ -1994,7 +1994,7 @@ AM_CONDITIONAL([HAVE_CARES], [test "x${have_cares}" = "xyes"]) if test "x$have_cares" = "xyes" ; then ecore_con_resolver="cares" -elif test "x$have_ipv6" = "xyes" ; then +elif test -n "$ac_cv_prog_cc_c99" ; then ecore_con_resolver="dns.c" else ecore_con_resolver="fork"