Line | |
---|
1 | @rem Fetches (and builds if necessary) external dependencies
|
---|
2 |
|
---|
3 | @rem Assume we start inside the Python source directory
|
---|
4 | cd ..
|
---|
5 | call "%VS71COMNTOOLS%vsvars32.bat"
|
---|
6 |
|
---|
7 | @rem bzip
|
---|
8 | if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
|
---|
9 |
|
---|
10 | @rem Sleepycat db
|
---|
11 | if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
|
---|
12 | if not exist db-4.4.20\build_win32\debug\libdb44sd.lib (
|
---|
13 | devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project db_static
|
---|
14 | )
|
---|
15 |
|
---|
16 | @rem OpenSSL
|
---|
17 | if not exist openssl-0.9.8a svn export http://svn.python.org/projects/external/openssl-0.9.8a
|
---|
18 |
|
---|
19 | @rem tcltk
|
---|
20 | if not exist tcl8.4.12 (
|
---|
21 | if exist tcltk rd /s/q tcltk
|
---|
22 | svn export http://svn.python.org/projects/external/tcl8.4.12
|
---|
23 | svn export http://svn.python.org/projects/external/tk8.4.12
|
---|
24 | cd tcl8.4.12\win
|
---|
25 | nmake -f makefile.vc
|
---|
26 | nmake -f makefile.vc INSTALLDIR=..\..\tcltk install
|
---|
27 | cd ..\..
|
---|
28 | cd tk8.4.12\win
|
---|
29 | nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12
|
---|
30 | nmake -f makefile.vc TCLDIR=..\..\tcl8.4.12 INSTALLDIR=..\..\tcltk install
|
---|
31 | cd ..\..
|
---|
32 | )
|
---|
33 |
|
---|
34 | @rem sqlite
|
---|
35 | if not exist sqlite-source-3.3.4 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
|
---|
36 | if not exist build\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\PCbuild
|
---|
Note:
See
TracBrowser
for help on using the repository browser.