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.
This commit is contained in:
Daniel Stenberg 2005-04-24 22:25:04 +00:00
parent b8bc6bed97
commit a8ff0a21bf
5 changed files with 21 additions and 1 deletions

View file

@ -37,6 +37,10 @@
/* Define if you have the setlocale() function. */
#define HAVE_SETLOCALE 1
/* Defines set for VS2005 to _not_ decprecate a few functions we use. */
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
/*************************************************
* This section is for compiler specific defines.*
*************************************************/

View file

@ -29,6 +29,10 @@
/* Borland fix */
#define WIN32
#endif
#if !defined(WIN32) && defined(_WIN32)
/* This works for VS2005 on x64 */
#define WIN32
#endif
#ifdef HAVE_CONFIG_H
#include "config.h" /* the configure script results */