diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-13 22:21:54 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-13 22:21:54 (GMT) |
commit | 8497633e424018b63da7614b7011be1fc1e36a97 (patch) | |
tree | 501335136bf14823522b808a48ebae702beff3f5 /win | |
parent | 5258250292c7721de6f0ce6920ae50d00b1144f2 (diff) | |
download | tcl-8497633e424018b63da7614b7011be1fc1e36a97.zip tcl-8497633e424018b63da7614b7011be1fc1e36a97.tar.gz tcl-8497633e424018b63da7614b7011be1fc1e36a97.tar.bz2 |
sync win/rules.vc with Tk version
Diffstat (limited to 'win')
-rw-r--r-- | win/rules.vc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/win/rules.vc b/win/rules.vc index 0cc9ffb..4efbad7 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -422,18 +422,21 @@ OPTDEFINES = $(OPTDEFINES) -DUSE_THREAD_ALLOC=1 OPTDEFINES = $(OPTDEFINES) -DSTATIC_BUILD !endif -!if $(DEBUG) -OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_DEBUG -!elseif $(OPTIMIZING) +!if !$(DEBUG) +OPTDEFINES = $(OPTDEFINES) -DNDEBUG +!if $(OPTIMIZING) OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_OPTIMIZED !endif +!endif !if $(PROFILE) OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_PROFILED !endif !if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64" OPTDEFINES = $(OPTDEFINES) -DTCL_CFG_DO64BIT !endif - +!if $(VCVERSION) < 1300 +OPTDEFINES = $(OPTDEFINES) -DNO_STRTOI64 +!endif #---------------------------------------------------------- # Get common info used when building extensions. |