Martin v. Löwis | 14c1cf8 | 2006-03-13 10:52:04 +0000 | [diff] [blame] | 1 | @rem Fetches (and builds if necessary) external dependencies
|
| 2 |
|
| 3 | @rem Assume we start inside the Python source directory
|
| 4 | cd ..
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 5 | call "%VS90COMNTOOLS%vsvars32.bat"
|
Martin v. Löwis | 14c1cf8 | 2006-03-13 10:52:04 +0000 | [diff] [blame] | 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 |
|
Martin v. Löwis | f6f7925 | 2006-03-13 13:48:05 +0000 | [diff] [blame] | 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 (
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 13 | vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project db_static
|
Martin v. Löwis | f6f7925 | 2006-03-13 13:48:05 +0000 | [diff] [blame] | 14 | )
|
Martin v. Löwis | a0f4549 | 2006-03-21 12:08:39 +0000 | [diff] [blame] | 15 |
|
| 16 | @rem OpenSSL
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 17 | if not exist openssl-0.9.8g (
|
| 18 | if exist openssl-0.9.8a rd /s/q openssl-0.9.8a
|
| 19 | svn export http://svn.python.org/projects/external/openssl-0.9.8g
|
| 20 | )
|
Martin v. Löwis | 9ca8789 | 2006-03-21 13:20:29 +0000 | [diff] [blame] | 21 |
|
| 22 | @rem tcltk
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 23 | if not exist tcl8.4.16 (
|
Martin v. Löwis | 9ca8789 | 2006-03-21 13:20:29 +0000 | [diff] [blame] | 24 | if exist tcltk rd /s/q tcltk
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 25 | if exist tcl8.4.12 rd /s/q tcl8.4.12
|
| 26 | if exist tk8.4.12 rd /s/q tk8.4.12
|
| 27 | svn export http://svn.python.org/projects/external/tcl8.4.16
|
| 28 | svn export http://svn.python.org/projects/external/tk8.4.16
|
| 29 | cd tcl8.4.16\win
|
| 30 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500
|
| 31 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 INSTALLDIR=..\..\tcltk install
|
Martin v. Löwis | 9ca8789 | 2006-03-21 13:20:29 +0000 | [diff] [blame] | 32 | cd ..\..
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 33 | cd tk8.4.16\win
|
| 34 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 TCLDIR=..\..\tcl8.4.16
|
| 35 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 TCLDIR=..\..\tcl8.4.16 INSTALLDIR=..\..\tcltk install
|
Martin v. Löwis | 59e9ac8 | 2006-08-17 19:19:32 +0000 | [diff] [blame] | 36 | cd ..\..
|
Martin v. Löwis | 9ca8789 | 2006-03-21 13:20:29 +0000 | [diff] [blame] | 37 | )
|
Martin v. Löwis | 1a494bd | 2006-04-04 07:10:59 +0000 | [diff] [blame] | 38 |
|
| 39 | @rem sqlite
|
| 40 | if not exist sqlite-source-3.3.4 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
|
Tim Peters | ed2038b | 2006-04-04 19:12:51 +0000 | [diff] [blame] | 41 | if not exist build\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\PCbuild
|