aboutsummaryrefslogtreecommitdiff
path: root/lib/setup.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-24 22:25:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-24 22:25:04 +0000
commita8ff0a21bf88f1cbfd6fa38683876dc95a96f1f3 (patch)
treeb31577c484fd869f1da90f930cd8ace5e574564e /lib/setup.h
parentb8bc6bed97358020963a4333077a12fa7f39fa61 (diff)
Based on feedback from Cory Nelson, I added some preprocessor magic in
*/setup.h and */config-win32.h to build fine with VS2005 on x64.
Diffstat (limited to 'lib/setup.h')
-rw-r--r--lib/setup.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/setup.h b/lib/setup.h
index b44e777c9..bf3a9aad3 100644
--- a/lib/setup.h
+++ b/lib/setup.h
@@ -33,7 +33,11 @@
#endif
#if !defined(WIN32) && defined(__WIN32__)
-/* This should be a good Borland fix. Alexander J. Oss told us! */
+/* This should be a good Borland fix. */
+#define WIN32
+#endif
+#if !defined(WIN32) && defined(_WIN32)
+/* This works for VS2005 on x64 */
#define WIN32
#endif