Don't include "nameser.h" for Watt32. Use the normal BSD-socket headers.
diff --git a/ares/adig.c b/ares/adig.c
index 494386f..6bc87cf 100644
--- a/ares/adig.c
+++ b/ares/adig.c
@@ -18,7 +18,7 @@
 #include "setup.h"
 #include <sys/types.h>
 
-#ifdef WIN32
+#if defined(WIN32) && !defined(WATT32)
 #include "nameser.h"
 #else
 #include <sys/time.h>
diff --git a/ares/ahost.c b/ares/ahost.c
index 92eacd7..55d47a4 100644
--- a/ares/ahost.c
+++ b/ares/ahost.c
@@ -18,8 +18,7 @@
 #include "setup.h"
 #include <sys/types.h>
 
-#ifdef WIN32
-#else
+#if !defined(WIN32) || defined(WATT32)
 #include <sys/time.h>
 #include <sys/socket.h>
 #include <netinet/in.h>