From: Joe Groff Date: Thu, 6 May 2010 05:26:09 +0000 (-0700) Subject: define _CRT_SECURE_NO_WARNINGS to prevent MSVC from pushing its stupid nonstandard... X-Git-Tag: 0.97~4670^2~35 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=52e01d93b21228d13ec9cd022a04e09cf5f08583 define _CRT_SECURE_NO_WARNINGS to prevent MSVC from pushing its stupid nonstandard forms of standard C functions --- diff --git a/Nmakefile b/Nmakefile index 1edc14199d..d0b543d7ab 100755 --- a/Nmakefile +++ b/Nmakefile @@ -1,7 +1,7 @@ !IF DEFINED(PLATFORM) LINK_FLAGS = /nologo shell32.lib -CL_FLAGS = /nologo /O2 /W3 +CL_FLAGS = /nologo /O2 /W3 /D_CRT_SECURE_NO_WARNINGS !IF DEFINED(DEBUG) LINK_FLAGS = $(LINK_FLAGS) /DEBUG