diff options
Diffstat (limited to 'lib/config-win32ce.h')
-rw-r--r-- | lib/config-win32ce.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index 4d4016079..7531d4b1f 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -308,6 +308,12 @@ /* Undef keyword 'const' if it does not work. */ /* #undef const */ +/* Define to avoid VS2005 complaining about portable C functions */ +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +#define _CRT_SECURE_NO_DEPRECATE 1 +#define _CRT_NONSTDC_NO_DEPRECATE 1 +#endif + /* ---------------------------------------------------------------- */ /* LDAP SUPPORT */ /* ---------------------------------------------------------------- */ @@ -320,10 +326,6 @@ /* ADDITIONAL DEFINITIONS */ /* ---------------------------------------------------------------- */ -/* Defines set for VS2005 to _not_ deprecate a few functions we use. */ -#define _CRT_SECURE_NO_DEPRECATE 1 -#define _CRT_NONSTDC_NO_DEPRECATE 1 - /* Define cpu-machine-OS */ #undef OS #define OS "i386-pc-win32ce" |