diff options
author | davygrvy <davygrvy@pobox.com> | 2004-01-10 00:24:55 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-01-10 00:24:55 (GMT) |
commit | 50a50a083caae0e727ebf24c5c7a4243b242b06e (patch) | |
tree | 8eb0fe7732eba84c16292a220d872081566ecd43 /win/rules.vc | |
parent | f3f0d906a9fd21b7f70b6de0d1014009cf454ccf (diff) | |
download | tcl-50a50a083caae0e727ebf24c5c7a4243b242b06e.zip tcl-50a50a083caae0e727ebf24c5c7a4243b242b06e.tar.gz tcl-50a50a083caae0e727ebf24c5c7a4243b242b06e.tar.bz2 |
Added -DTCL_NO_DEPRECATED usage to makefile.vc. Called like this:
nmake -af makefile.vc CHECKS=nodep
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/win/rules.vc b/win/rules.vc index e0917f3..58ee9b2 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -10,7 +10,7 @@ # Copyright (c) 2001-2003 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.15 2003/12/23 02:19:13 davygrvy Exp $ +# RCS: @(#) $Id: rules.vc,v 1.16 2004/01/10 00:24:55 davygrvy Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -266,6 +266,22 @@ TCL_COMPILE_DEBUG = 0 #---------------------------------------------------------- +# Decode the checks requested. +#---------------------------------------------------------- + +!if "$(CHECKS)" == "" || [nmakehlp -f "$(CHECKS)" "none"] +TCL_NO_DEPRECATED = 0 +!else +!if [nmakehlp -f $(CHECKS) "nodep"] +!message *** Doing nodep check +TCL_NO_DEPRECATED = 1 +!else +TCL_NO_DEPRECATED = 0 +!endif +!endif + + +#---------------------------------------------------------- # Set our defines now armed with our options. #---------------------------------------------------------- @@ -286,6 +302,9 @@ OPTDEFINES = $(OPTDEFINES) -DUSE_THREAD_ALLOC=1 !if $(STATIC_BUILD) OPTDEFINES = $(OPTDEFINES) -DSTATIC_BUILD !endif +!if $(TCL_NO_DEPRECATED) +OPTDEFINES = $(OPTDEFINES) -DTCL_NO_DEPRECATED +!endif !if $(DEBUG) OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_DEBUG |