dns.c is the default resolver in ALL cases when we have a C99 compiler, not just when ipv6 is available.

This commit is contained in:
Mike Blumenkrantz 2013-08-12 08:39:57 +01:00
parent 2b68a31252
commit cd612516bd
1 changed files with 1 additions and 1 deletions

View File

@ -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"