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 ..
|
| 5 |
|
| 6 | @rem bzip
|
| 7 | if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
|
| 8 |
|
Martin v. Löwis | f6f7925 | 2006-03-13 13:48:05 +0000 | [diff] [blame^] | 9 | @rem Sleepycat db
|
| 10 | if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
|
| 11 | if not exist db-4.4.20\build_win32\debug\libdb44sd.lib (
|
| 12 | devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project db_static
|
| 13 | )
|