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 | fcddd29 | 2006-03-13 14:12:47 +0000 | [diff] [blame^] | 5 | call "%VS71COMNTOOLS%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 (
|
| 13 | devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project db_static
|
| 14 | )
|