blob: 9ce42b59170c6c5d1e5489f5bcd696a9d3c62220 [file] [log] [blame]
Martin v. Löwis14c1cf82006-03-13 10:52:04 +00001@rem Fetches (and builds if necessary) external dependencies
2
3@rem Assume we start inside the Python source directory
4cd ..
Martin v. Löwisfcddd292006-03-13 14:12:47 +00005call "%VS71COMNTOOLS%vsvars32.bat"
Martin v. Löwis14c1cf82006-03-13 10:52:04 +00006
7@rem bzip
8if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
9
Martin v. Löwisf6f79252006-03-13 13:48:05 +000010@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)
Martin v. Löwisa0f45492006-03-21 12:08:39 +000015
16@rem OpenSSL
17if not exist openssl-0.9.8a svn export http://svn.python.org/projects/external/openssl-0.9.8a