From a8ff0a21bf88f1cbfd6fa38683876dc95a96f1f3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 24 Apr 2005 22:25:04 +0000 Subject: 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. --- lib/setup.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/setup.h') 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 -- cgit v1.2.3