aboutsummaryrefslogtreecommitdiff
path: root/ares/ares_process.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-06-02 21:10:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-06-02 21:10:21 +0000
commit1dcb2b7e6592ae957b3d57f19b13c426768da4c8 (patch)
tree9c18d580734a51b58f32df3491c7781591d396c7 /ares/ares_process.c
parent5470b9aa73d4cb26f08763cd0165d68623f104cb (diff)
sigh, define TRUE if not already
Diffstat (limited to 'ares/ares_process.c')
-rw-r--r--ares/ares_process.c5
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