diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-06-05 16:53:44 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-06-05 16:53:44 (GMT) |
commit | ba9d233d835934b863d4c9aadc77639de25e848a (patch) | |
tree | bff6e8d3ea0f3d1f0553cb16b07db006238ea0dc /PCbuild | |
parent | d967fc9da2c5c094865514bd213dd702698e4dad (diff) | |
parent | 4a01fd2d65c8db3b9c66aa523673c994731e8517 (diff) | |
download | cpython-ba9d233d835934b863d4c9aadc77639de25e848a.zip cpython-ba9d233d835934b863d4c9aadc77639de25e848a.tar.gz cpython-ba9d233d835934b863d4c9aadc77639de25e848a.tar.bz2 |
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.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/tk.vcxproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/tk.vcxproj b/PCbuild/tk.vcxproj index 3944ef7..d760f87 100644 --- a/PCbuild/tk.vcxproj +++ b/PCbuild/tk.vcxproj @@ -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 |