aboutsummaryrefslogtreecommitdiff
path: root/ares/configure.ac
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-05-19 02:50:29 +0000
committerYang Tse <yangsita@gmail.com>2008-05-19 02:50:29 +0000
commit512b9ac19446999d457c53783e54d3151391e823 (patch)
treee9a3b52dc15d86498c70e6c5a33d27af50f7066a /ares/configure.ac
parent560a82aeaf389f66e497996b4cdf76b501752fd9 (diff)
if WINSOCK2 API is used link with 'ws2_32', else
if WINSOCK API is used under WinCE link with 'winsock', else if WINSOCK API is used link with 'wsock32'.
Diffstat (limited to 'ares/configure.ac')
-rw-r--r--ares/configure.ac19
1 files changed, 13 insertions, 6 deletions
diff --git a/ares/configure.ac b/ares/configure.ac
index 5689a9e55..9653a2a7e 100644
--- a/ares/configure.ac
+++ b/ares/configure.ac
@@ -19,9 +19,9 @@ AM_PROG_CC_C_O
AC_PROG_INSTALL
case $host_os in
-solaris*)
- AC_DEFINE(ETC_INET, 1, [if a /etc/inet dir is being used])
- ;;
+ solaris*)
+ AC_DEFINE(ETC_INET, 1, [if a /etc/inet dir is being used])
+ ;;
esac
dnl support building of Windows DLLs
@@ -228,9 +228,16 @@ if test "$HAVE_GETHOSTBYNAME" != "1"
then
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_winsock_h" = "yes"; then
+ case $host in
+ *-*-mingw32ce*)
+ winsock_LIB="-lwinsock"
+ ;;
+ *)
+ winsock_LIB="-lwsock32"
+ ;;
+ esac
+ fi
if test "$ac_cv_header_winsock2_h" = "yes"; then
winsock_LIB="-lws2_32"
fi