From: Daniel Stenberg Date: Thu, 5 Jan 2006 07:57:32 +0000 (+0000) Subject: James Bursa fixes: find the hosts file on RISC OS, and made it build with X-Git-Tag: upstream/7.37.1~10573 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00c7780fcb3f1503481663beb60b1c6e0d2447db;p=platform%2Fupstream%2Fcurl.git James Bursa fixes: find the hosts file on RISC OS, and made it build with newer gcc versions that no longer defines "riscos". --- diff --git a/ares/CHANGES b/ares/CHANGES index 4374b9f..f4d4676 100644 --- a/ares/CHANGES +++ b/ares/CHANGES @@ -1,5 +1,10 @@ Changelog for the c-ares project +* January 5, 2006 + +- James Bursa fixed c-ares to find the hosts file on RISC OS, and made it + build with newer gcc versions that no longer defines "riscos". + * December 22 - Daniel Stenberg added ares_getsock() that extracts the set of sockets to diff --git a/ares/ares_init.c b/ares/ares_init.c index f97f701..a6a6723 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -504,7 +504,7 @@ DhcpNameServer if (status == ARES_SUCCESS) status = ARES_EOF; -#elif defined(riscos) +#elif defined(__riscos__) /* Under RISC OS, name servers are listed in the system variable Inet$Resolvers, space separated. */ diff --git a/ares/ares_private.h b/ares/ares_private.h index 83b77d2..df51266 100644 --- a/ares/ares_private.h +++ b/ares/ares_private.h @@ -62,6 +62,10 @@ #define PATH_RESOLV_CONF "sys:/etc/resolv.cfg" #define PATH_HOSTS "sys:/etc/hosts" +#elif defined(__riscos__) + +#define PATH_HOSTS "InetDBase:Hosts" + #else #define PATH_RESOLV_CONF "/etc/resolv.conf"