djgpp fixes by Gisle
authorDaniel Stenberg <daniel@haxx.se>
Thu, 1 Jul 2004 13:55:13 +0000 (13:55 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 1 Jul 2004 13:55:13 +0000 (13:55 +0000)
CHANGES
ares_gethostbyaddr.c
ares_gethostbyname.c
ares_private.h
nameser.h

diff --git a/CHANGES b/CHANGES
index e597ed9..cd0c451 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
   Changelog for the c-ares project
 
+* July 1
+- Gisle Vanem provided Makefile.dj to build with djgpp, added a few more djgpp
+  fixes and made ares not use 'errno' to provide further info on Windows.
+
 * June 30
 - Gisle Vanem made it build with djgpp and run fine with the Watt-32 stack.
 
index 7e91dce..5652145 100644 (file)
@@ -151,6 +151,12 @@ static int file_lookup(struct in_addr *addr, struct hostent **host)
     strcat(PATH_HOSTS, PATH_HOSTS_9X);
   }
 
+#elif defined(WATT32)
+  extern const char *_w32_GetHostsFile (void);
+  const char *PATH_HOSTS = _w32_GetHostsFile();
+
+  if (!PATH_HOSTS)
+    return ARES_ENOTFOUND;
 #endif
 
   fp = fopen(PATH_HOSTS, "r");
index accf962..0d06dfe 100644 (file)
@@ -224,6 +224,12 @@ static int file_lookup(const char *name, struct hostent **host)
     strcat(PATH_HOSTS, PATH_HOSTS_9X);
   }
 
+#elif defined(WATT32)
+  extern const char *_w32_GetHostsFile (void);
+  const char *PATH_HOSTS = _w32_GetHostsFile();
+
+  if (!PATH_HOSTS)
+    return ARES_ENOTFOUND;
 #endif
 
   fp = fopen(PATH_HOSTS, "r");
index caff53b..d8b7fd1 100644 (file)
@@ -32,7 +32,6 @@
 #include <sys/ioctl.h>
 #undef  closesocket
 #define closesocket(s)    close_s(s)
-#define select(n,r,w,x,t) select_s(n,r,w,x,t)
 #define writev(s,v,c)     writev_s(s,v,c)
 #endif
 
 #define DHCPNAMESERVER "DhcpNameServer"
 #define PATH_HOSTS_NT  "\\drivers\\etc\\hosts"
 #define PATH_HOSTS_9X  "\\hosts"
-          
+
+#elif defined(WATT32)
+
+#define PATH_RESOLV_CONF "/dev/ENV/etc/resolv.conf"
+
 #else
 
 #define PATH_RESOLV_CONF       "/etc/resolv.conf"
index b6c78aa..0311c7e 100644 (file)
--- a/nameser.h
+++ b/nameser.h
@@ -11,6 +11,7 @@
 #define MAXHOSTNAMELEN 256
 
 #define EINPROGRESS WSAEINPROGRESS
+#define EWOULDBLOCK WSAEWOULDBLOCK
 
 /* Structure for scatter/gather I/O.  */
 struct iovec