Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9789185

Browse files
committed
Issue #21683: Add Tix build to the Windows buildbot scripts.
1 parent c6a66cc commit 9789185

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

Tools/buildbot/external-amd64.bat

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@ if not exist tcltk64\bin\tcl86tg.dll (
1212
)
1313

1414
if not exist tcltk64\bin\tk86tg.dll (
15-
cd tk-8.6.1.0\win
15+
cd tk-8.6.1.0\win
1616
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 clean
1717
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 all
1818
nmake -f makefile.vc OPTS=symbols MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.6.1.0 install-binaries install-libraries
1919
cd ..\..
2020
)
2121

22+
if not exist tcltk64\lib\tix8.4.3\tix84g.dll (
23+
cd tix-8.4.3.4\win
24+
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 clean
25+
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 all
26+
nmake -f python.mak DEBUG=1 MACHINE=AMD64 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk64 install
27+
cd ..\..
28+
)

Tools/buildbot/external-common.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ cd ..
99
@rem if exist tcltk64 rd /s/q tcltk64
1010
@rem if exist tcl-8.6.1.0 rd /s/q tcl-8.6.1.0
1111
@rem if exist tk-8.6.1.0 rd /s/q tk-8.6.1.0
12+
@rem if exist tix-8.4.3.4 rd /s/q tix-8.4.3.4
1213
@rem if exist db-4.4.20 rd /s/q db-4.4.20
1314
@rem if exist openssl-1.0.1h rd /s/q openssl-1.0.1h
14-
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
15+
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
1516

1617
@rem bzip
1718
if not exist bzip2-1.0.6 (
@@ -31,6 +32,7 @@ if not exist tcl-8.6.1.0 (
3132
svn export http://svn.python.org/projects/external/tcl-8.6.1.0
3233
)
3334
if not exist tk-8.6.1.0 svn export http://svn.python.org/projects/external/tk-8.6.1.0
35+
if not exist tix-8.4.3.4 svn export http://svn.python.org/projects/external/tix-8.4.3.4
3436

3537
@rem sqlite3
3638
if not exist sqlite-3.8.3.1 (

Tools/buildbot/external.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,11 @@ if not exist tcltk\bin\tk86tg.dll (
1919
nmake -f makefile.vc OPTS=symbols INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.6.1.0 install-binaries install-libraries
2020
cd ..\..
2121
)
22+
23+
if not exist tcltk\lib\tix8.4.3\tix84g.dll (
24+
cd tix-8.4.3.4\win
25+
nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk clean
26+
nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk all
27+
nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk install
28+
cd ..\..
29+
)

0 commit comments

Comments
 (0)