mirror of https://github.com/python/cpython
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:
commit
ba9d233d83
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue