summaryrefslogtreecommitdiff
path: root/PCbuild/tk.vcxproj
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-06-05 11:53:44 -0500
committerZachary Ware <zachary.ware@gmail.com>2014-06-05 11:53:44 -0500
commitba9d233d835934b863d4c9aadc77639de25e848a (patch)
treebff6e8d3ea0f3d1f0553cb16b07db006238ea0dc /PCbuild/tk.vcxproj
parentd967fc9da2c5c094865514bd213dd702698e4dad (diff)
parent4a01fd2d65c8db3b9c66aa523673c994731e8517 (diff)
downloadcpython-git-ba9d233d835934b863d4c9aadc77639de25e848a.tar.gz
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/tk.vcxproj')
-rw-r--r--PCbuild/tk.vcxproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/tk.vcxproj b/PCbuild/tk.vcxproj
index 3944ef7945..d760f87657 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