diff --git a/configure b/configure index 8f7eadb844..83460d99e5 100755 --- a/configure +++ b/configure @@ -17911,7 +17911,7 @@ $as_echo_n "checking for gethostbyname_r with 6 arguments... " >&6; } int main () { -struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL); +int r = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL); ; return 0; } @@ -17939,7 +17939,7 @@ $as_echo_n "checking for gethostbyname_r with 5 arguments... " >&6; } int main () { -struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL); +int r = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL); ; return 0; } diff --git a/configure.ac b/configure.ac index aa5172adb7..df974b441f 100644 --- a/configure.ac +++ b/configure.ac @@ -970,7 +970,7 @@ if test "x$have_gethostbyname_r_public_declaration" = "xyes"; then AC_LINK_IFELSE( [AC_LANG_PROGRAM([#include #include ], - [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);])], + [int r = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);])], AC_MSG_RESULT(yes) AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]), AC_MSG_RESULT(no) @@ -980,7 +980,7 @@ if test "x$have_gethostbyname_r_public_declaration" = "xyes"; then AC_LINK_IFELSE( [AC_LANG_PROGRAM([#include #include ], - [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);])], + [int r = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);])], AC_MSG_RESULT(yes) AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]), AC_MSG_RESULT(no)