From dee3844f130994f720588cdac9931e202d252641 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 7 Nov 2007 18:18:42 +0000 Subject: MSVC versions prior to VS2005 do not complain about portable C functions --- lib/config-win32.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib/config-win32.h') diff --git a/lib/config-win32.h b/lib/config-win32.h index 6102f9386..97db859b9 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -347,6 +347,12 @@ #define HAVE_LONGLONG 1 #endif +/* 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 */ /* ---------------------------------------------------------------- */ @@ -370,10 +376,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 #if defined(_M_IX86) || defined(__i386__) /* x86 (MSVC or gcc) */ -- cgit v1.2.3