diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-06-02 21:10:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-02 21:10:21 +0000 |
commit | 1dcb2b7e6592ae957b3d57f19b13c426768da4c8 (patch) | |
tree | 9c18d580734a51b58f32df3491c7781591d396c7 | |
parent | 5470b9aa73d4cb26f08763cd0165d68623f104cb (diff) |
sigh, define TRUE if not already
-rw-r--r-- | ares/ares_process.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ares/ares_process.c b/ares/ares_process.c index a1e16af28..83b407077 100644 --- a/ares/ares_process.c +++ b/ares/ares_process.c @@ -45,6 +45,11 @@ #include "ares_dns.h" #include "ares_private.h" +#ifndef TRUE +/* at least Solaris 7 does not have TRUE at this point */ +#define TRUE 1 +#endif + #if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS) #define GET_ERRNO() WSAGetLastError() #else |