From: Gisle Vanem Date: Tue, 31 Oct 2006 17:51:54 +0000 (+0000) Subject: Don't include "nameser.h" for Watt32. Use the normal BSD-socket headers. X-Git-Tag: cares-1_3_2~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=561d01c4504571196571b8e0ac6b63207a92410a;p=curl Don't include "nameser.h" for Watt32. Use the normal BSD-socket headers. --- diff --git a/ares/adig.c b/ares/adig.c index 494386ff4..6bc87cf03 100644 --- a/ares/adig.c +++ b/ares/adig.c @@ -18,7 +18,7 @@ #include "setup.h" #include -#ifdef WIN32 +#if defined(WIN32) && !defined(WATT32) #include "nameser.h" #else #include diff --git a/ares/ahost.c b/ares/ahost.c index 92eacd76a..55d47a416 100644 --- a/ares/ahost.c +++ b/ares/ahost.c @@ -18,8 +18,7 @@ #include "setup.h" #include -#ifdef WIN32 -#else +#if !defined(WIN32) || defined(WATT32) #include #include #include