~pythonregexp2.7/python/issue2636-01+09-01-01

« back to all changes in this revision

Viewing changes to Tools/buildbot/external.bat

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-22 00:02:12 UTC
  • mfrom: (39022.1.34 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080922000212-7r0q4f4ugiq57jph
Merged in changes from the Atomic Grouping / Possessive Qualifiers branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
call "Tools\buildbot\external-common.bat"
5
5
call "%VS90COMNTOOLS%\vsvars32.bat"
6
6
 
7
 
if not exist tcltk\bin\tcl84g.dll (
8
 
    cd tcl-8.4.18.2\win
9
 
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all install
 
7
if not exist tcltk\bin\tcl85g.dll (
 
8
    @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
 
9
    cd tcl-8.5.2.1\win
 
10
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all 
 
11
    nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install
10
12
    cd ..\..
11
13
)
12
14
 
13
 
if not exist tcltk\bin\tk84g.dll (
14
 
    cd tk-8.4.18.1\win    
15
 
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.4.18.2 clean all install
 
15
if not exist tcltk\bin\tk85g.dll (
 
16
    cd tk-8.5.2.0\win    
 
17
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean
 
18
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all
 
19
    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install
16
20
    cd ..\..
17
21
)