From 7ad8b287c8453a3e61dbc0d34d467632b8b06fc8 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Fri, 11 Sep 2015 13:11:02 +1000 Subject: Force resolution of _res for correct detection. bz#2259, from sconeu at yahoo.com. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 02587e8d7..ec8f50d2d 100644 --- a/configure.ac +++ b/configure.ac @@ -3969,7 +3969,10 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include extern struct __res_state _res; - ]], [[ ]])], + ]], [[ +struct __res_state *volatile p = &_res; /* force resolution of _res */ +return 0; + ]],)], [AC_MSG_RESULT([yes]) AC_DEFINE([HAVE__RES_EXTERN], [1], [Define if you have struct __res_state _res as an extern]) -- cgit v1.2.3