From e334254a7b43b8413485c57617d21af9430551c1 Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Sat, 10 May 2008 18:43:09 +0000 Subject: [PATCH] Added _CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE to MSVC projectfiles, to make warnings in Bullet more visible. This deals with most COLLADA_DOM/libxml issues. --- mk/msvcgen/control.tlib | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mk/msvcgen/control.tlib b/mk/msvcgen/control.tlib index 02e921789..21e7b9ff6 100644 --- a/mk/msvcgen/control.tlib +++ b/mk/msvcgen/control.tlib @@ -179,18 +179,18 @@ builds = [ projtypes = { appcon => { - defines = ['_CONSOLE'] + defines = ['_CONSOLE','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE'] }, appgui => { - defines = ['_WINDOWS'] + defines = ['_WINDOWS','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE'] }, group => { }, library => { - defines = ['_LIB', '_WINDOWS'] + defines = ['_LIB', '_WINDOWS','_CRT_SECURE_NO_DEPRECATE','_CRT_NONSTDC_NO_DEPRECATE'] } };