source: trunk/essentials/dev-lang/python/Tools/buildbot/external.bat

Last change on this file was 3225, checked in by bird, 18 years ago

Python 2.5

File size: 1.3 KB
Line 
1@rem Fetches (and builds if necessary) external dependencies
2
3@rem Assume we start inside the Python source directory
4cd ..
5call "%VS71COMNTOOLS%vsvars32.bat"
6
7@rem bzip
8if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
9
10@rem Sleepycat db
11if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
12if 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
17if not exist openssl-0.9.8a svn export http://svn.python.org/projects/external/openssl-0.9.8a
18
19@rem tcltk
20if 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
35if not exist sqlite-source-3.3.4 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
36if 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.