summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ares.h8
-rw-r--r--ares_private.h8
-rw-r--r--setup.h10
3 files changed, 20 insertions, 6 deletions
diff --git a/ares.h b/ares.h
index 4437e3d..af7df70 100644
--- a/ares.h
+++ b/ares.h
@@ -18,6 +18,14 @@
#ifndef ARES__H
#define ARES__H
+/*
+ * Define WIN32 when build target is Win32 API
+ */
+
+#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
+#define WIN32
+#endif
+
#include <sys/types.h>
#if defined(_AIX) || (defined(NETWARE) && defined(__NOVELL_LIBC__))
diff --git a/ares_private.h b/ares_private.h
index 26f55db..d5ffbb3 100644
--- a/ares_private.h
+++ b/ares_private.h
@@ -18,6 +18,14 @@
* without express or implied warranty.
*/
+/*
+ * Define WIN32 when build target is Win32 API
+ */
+
+#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
+#define WIN32
+#endif
+
#include <stdio.h>
#include <sys/types.h>
diff --git a/setup.h b/setup.h
index 29e5d0f..70b8ecb 100644
--- a/setup.h
+++ b/setup.h
@@ -16,13 +16,11 @@
* without express or implied warranty.
*/
-#if !defined(WIN32) && defined(__WIN32__)
-/* Borland fix */
-#define WIN32
-#endif
+/*
+ * Define WIN32 when build target is Win32 API
+ */
-#if !defined(WIN32) && defined(_WIN32)
-/* VS2005 on x64 fix */
+#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
#define WIN32
#endif