diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-21 13:20:29 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-21 13:20:29 (GMT) |
commit | 9ca8789ee39880199990ed964b6af0369c4294c1 (patch) | |
tree | eac5065f2aac4e140c803dda799fbf3d8a6c53ce /Tools | |
parent | a0f4549b790bd61d86d289b65c3158b20a903225 (diff) | |
download | cpython-9ca8789ee39880199990ed964b6af0369c4294c1.zip cpython-9ca8789ee39880199990ed964b6af0369c4294c1.tar.gz cpython-9ca8789ee39880199990ed964b6af0369c4294c1.tar.bz2 |
Update to Tk 8.4.12 and Tix 8.4.0
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/external.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index 9ce42b5..1195072 100644 --- a/Tools/buildbot/external.bat +++ b/Tools/buildbot/external.bat @@ -15,3 +15,17 @@ if not exist db-4.4.20\build_win32\debug\libdb44sd.lib ( @rem OpenSSL
if not exist openssl-0.9.8a svn export http://svn.python.org/projects/external/openssl-0.9.8a
+
+@rem tcltk
+if not exist tcl8.4.12 (
+ if exist tcltk rd /s/q tcltk
+ svn export http://svn.python.org/projects/external/tcl8.4.12
+ svn export http://svn.python.org/projects/external/tk8.4.12
+ cd tcl8.4.12\win
+ nmake -f makefile.vc
+ nmake -f makefile.vc INSTALLDIR=..\..\tcltk install
+ cd ..\..
+ cd tk8.4.12\win
+ nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12
+ nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12 INSTALLDIR=..\..\tcltk install
+)
|