diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-02-29 18:17:23 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-02-29 18:17:23 (GMT) |
commit | 8b6552deb3cc2700b8082165b85f486e4456618e (patch) | |
tree | deb1f37f98558c128743bd29752ad8d543e5e028 /Tools | |
parent | 3c94088d9855073e60aa32d3f1784904a6c396c5 (diff) | |
download | cpython-8b6552deb3cc2700b8082165b85f486e4456618e.zip cpython-8b6552deb3cc2700b8082165b85f486e4456618e.tar.gz cpython-8b6552deb3cc2700b8082165b85f486e4456618e.tar.bz2 |
Build db-4.4.20 with VS9; remove VS2003 build if necessary.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/external.bat | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index 9797aa2..ae18ead 100644 --- a/Tools/buildbot/external.bat +++ b/Tools/buildbot/external.bat @@ -8,9 +8,14 @@ call "%VS90COMNTOOLS%vsvars32.bat" if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
@rem Sleepycat db
-if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
+@rem Remove VS 2003 builds
+if exist db-4.4.20 if not exist db-4.4.20\build_win32\this_is_for_vs9 (
+ echo Removing old build
+ rd /s/q db-4.4.20
+)
+if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20
if not exist db-4.4.20\build_win32\debug\libdb44sd.lib (
- vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug /project db_static
+ vcbuild db-4.4.20\build_win32\db_static.vcproj "Debug|Win32"
)
@rem OpenSSL
|