diff options
author | nijtmans <nijtmans> | 2010-10-11 21:50:46 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-10-11 21:50:46 (GMT) |
commit | eac7d6560603161bdf15eff58f8e556341cd9a50 (patch) | |
tree | 8444a245a1b8372dd13e16eb7ccc5a955a5ae727 /win/rules.vc | |
parent | aff4deb1051f578be23a9c8449439e912d976c08 (diff) | |
download | tk-eac7d6560603161bdf15eff58f8e556341cd9a50.zip tk-eac7d6560603161bdf15eff58f8e556341cd9a50.tar.gz tk-eac7d6560603161bdf15eff58f8e556341cd9a50.tar.bz2 |
[FRQ 491789]: "setargv() doesn't support a unicode
cmdline" implemented for Tk on MSVC++
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/rules.vc b/win/rules.vc index f9aefe9..5e781ee 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -11,7 +11,7 @@ # Copyright (c) 2003-2007 Patrick Thoyts # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.28 2010/09/14 08:50:20 nijtmans Exp $ +# RCS: @(#) $Id: rules.vc,v 1.29 2010/10/11 21:50:46 nijtmans Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -189,7 +189,9 @@ VCVER=0 !if ![echo VCVERSION=_MSC_VER > vercl.x] \ && ![cl -nologo -TC -P vercl.x $(ERRNULL)] !include vercl.i -!if $(VCVERSION) >= 1500 +!if $(VCVERSION) >= 1600 +VCVER=10 +!elseif $(VCVERSION) >= 1500 VCVER=9 !elseif $(VCVERSION) >= 1400 VCVER=8 |