From 560a82aeaf389f66e497996b4cdf76b501752fd9 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sun, 18 May 2008 20:13:13 +0000 Subject: on winsock systems linking is done using library 'ws2_32' when winsock2.h is available, and library 'winsock' is used when only winsock.h is available. --- ares/configure.ac | 52 ++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 38 insertions(+), 14 deletions(-) (limited to 'ares') diff --git a/ares/configure.ac b/ares/configure.ac index 462e3cd1a..5689a9e55 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -226,20 +226,44 @@ fi if test "$HAVE_GETHOSTBYNAME" != "1" then - dnl This is for Msys/Mingw - AC_MSG_CHECKING([for gethostbyname in ws2_32]) - my_ac_save_LIBS=$LIBS - LIBS="-lws2_32 $LIBS" - AC_TRY_LINK([#include ], - [gethostbyname("www.dummysite.com");], - [ dnl worked! - ws2="yes" - AC_MSG_RESULT([yes]) - HAVE_GETHOSTBYNAME="1"], - [ dnl failed, restore LIBS - LIBS=$my_ac_save_LIBS - AC_MSG_RESULT(no)] - ) + dnl This is for winsock systems + if test "$ac_cv_header_windows_h" = "yes"; then + if test "$ac_cv_header_winsock_h" = "yes"; then + winsock_LIB="-lwinsock" + fi + if test "$ac_cv_header_winsock2_h" = "yes"; then + winsock_LIB="-lws2_32" + fi + if test ! -z "$winsock_LIB"; then + my_ac_save_LIBS=$LIBS + LIBS="$winsock_LIB $LIBS" + AC_MSG_CHECKING([for gethostbyname in $winsock_LIB]) + AC_TRY_LINK([ +#ifdef HAVE_WINDOWS_H +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include +#ifdef HAVE_WINSOCK2_H +#include +#else +#ifdef HAVE_WINSOCK_H +#include +#endif +#endif +#endif + ],[ + gethostbyname("www.dummysite.com"); + ],[ + AC_MSG_RESULT([yes]) + HAVE_GETHOSTBYNAME="1" + ],[ + AC_MSG_RESULT([no]) + winsock_LIB="" + LIBS=$my_ac_save_LIBS + ]) + fi + fi fi if test "$HAVE_GETHOSTBYNAME" != "1" -- cgit v1.2.3