Issue #21665: Don't use 'OPTS=noxp' when compiling Tk.

That option had been for Win2k compatibility (which was dropped with
Python 3.3) and makes default ttk ugly on post-Win2k systems.
This commit is contained in:
Zachary Ware 2014-06-05 11:53:44 -05:00
commit ba9d233d83

View file

@ -153,9 +153,9 @@ IF "$(Platform)" EQU "Win32" set TclMachine=IX86
IF "$(Platform)" EQU "x64" set TclMachine=AMD64
IF "$(Configuration)" EQU "Debug" (
set TclOpts=symbols,noxp
set TclOpts=symbols
) ELSE (
set TclOpts=noxp
set TclOpts=
)
cd $(tkDir)\win