Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9649cdd5d4b947fd7356f1c2946509b8a520647d authored by Barry Warsaw on 03 April 2008, 04:10:02 UTC
Updating for 2.6a2
Tip revision: 9649cdd
external.bat
@rem Fetches (and builds if necessary) external dependencies

@rem Assume we start inside the Python source directory
call "Tools\buildbot\external-common.bat"
call "%VS90COMNTOOLS%\vsvars32.bat"

if not exist tcltk\bin\tcl84g.dll (
    cd tcl-8.4.18.2\win
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all install
    cd ..\..
)

if not exist tcltk\bin\tk84g.dll (
    cd tk-8.4.18.1\win    
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.4.18.2 clean all install
    cd ..\..
)
back to top