summaryrefslogtreecommitdiffstats
path: root/PCbuild9/build_tkinter.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-06 21:13:06 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-06 21:13:06 (GMT)
commit3d2f564d414a8ab766b1ea3aa86e7aee6f261f19 (patch)
tree3db30a07b13f1e3e6e8fbd0c6a95ad2a518b4ef4 /PCbuild9/build_tkinter.py
parent0a5e54e732ba892e3386d3571ebd0b36934d057b (diff)
downloadcpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.zip
cpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.tar.gz
cpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.tar.bz2
Several Windows related cleanups:
* Removed a #define from pyconfig.h. The macro was already defined a few lines higher. * Fixed path to tix in the build_tkinter.py script * Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL). * Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL). * Added some more information about PGO and the property files to PCbuild9/readme.txt. Are you fine with the changes, Martin?
Diffstat (limited to 'PCbuild9/build_tkinter.py')
-rw-r--r--PCbuild9/build_tkinter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/PCbuild9/build_tkinter.py b/PCbuild9/build_tkinter.py
index d76ea26..3e24d00 100644
--- a/PCbuild9/build_tkinter.py
+++ b/PCbuild9/build_tkinter.py
@@ -14,7 +14,7 @@ par = os.path.pardir
TCL = "tcl8.4.16"
TK = "tk8.4.16"
-TIX = "Tix8.4.0"
+TIX = "tix-8.4.0"
#TIX = "Tix8.4.2"
ROOT = os.path.abspath(os.path.join(here, par, par))
NMAKE = "nmake /nologo "
@@ -53,6 +53,7 @@ def build(platform, clean):
# TIX
if True:
+ # python9.mak is available at http://svn.python.org
os.chdir(os.path.join(ROOT, TIX, "win"))
if clean:
system(NMAKE + "/f python9.mak clean")