From 2e9b6cb6ec6cfed4126eb17994522717fae435e1 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Tue, 2 Sep 2008 21:17:05 +0000 Subject: Use vs9to8.py to refresh the Visual Studio 2005 build files. --- PC/VS8.0/_bsddb.vcproj | 933 ++++++++++++++++++++++++++++++++++++++- PC/VS8.0/_ctypes.vcproj | 2 +- PC/VS8.0/_multiprocessing.vcproj | 51 +-- PC/VS8.0/_sqlite3.vcproj | 16 +- PC/VS8.0/pcbuild.sln | 22 - PC/VS8.0/pyproject.vsprops | 14 +- PC/VS8.0/sqlite3.vcproj | 240 +--------- PCbuild/vs9to8.py | 6 +- 8 files changed, 985 insertions(+), 299 deletions(-) diff --git a/PC/VS8.0/_bsddb.vcproj b/PC/VS8.0/_bsddb.vcproj index 434fed9..50da1ce 100644 --- a/PC/VS8.0/_bsddb.vcproj +++ b/PC/VS8.0/_bsddb.vcproj @@ -42,7 +42,8 @@ /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes.vcproj b/PC/VS8.0/_ctypes.vcproj index 836f997..eb19943 100644 --- a/PC/VS8.0/_ctypes.vcproj +++ b/PC/VS8.0/_ctypes.vcproj @@ -642,7 +642,7 @@ > diff --git a/PC/VS8.0/_multiprocessing.vcproj b/PC/VS8.0/_multiprocessing.vcproj index 55b29ce..f3d0565 100644 --- a/PC/VS8.0/_multiprocessing.vcproj +++ b/PC/VS8.0/_multiprocessing.vcproj @@ -3,9 +3,10 @@ ProjectType="Visual C++" Version="8.00" Name="_multiprocessing" - ProjectGUID="{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectGUID="{9e48b300-37d1-11dd-8c41-005056c00008}" RootNamespace="_multiprocessing" Keyword="Win32Proj" + TargetFrameworkVersion="196613" > - - @@ -203,16 +198,13 @@ Name="VCAppVerifierTool" /> - @@ -230,6 +222,7 @@ /> - @@ -373,6 +363,7 @@ Name="VCLinkerTool" AdditionalDependencies="ws2_32.lib" BaseAddress="0x1e1D0000" + TargetMachine="17" /> @@ -417,7 +408,6 @@ /> diff --git a/PC/VS8.0/_sqlite3.vcproj b/PC/VS8.0/_sqlite3.vcproj index aa31ad6..cbd02cc 100644 --- a/PC/VS8.0/_sqlite3.vcproj +++ b/PC/VS8.0/_sqlite3.vcproj @@ -42,7 +42,7 @@ /> - - - - - - - - - - - - - - - - - - - - @@ -573,167 +535,7 @@ Name="Source Files" > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/PCbuild/vs9to8.py b/PCbuild/vs9to8.py index c59dea4..2dfbd5d 100644 --- a/PCbuild/vs9to8.py +++ b/PCbuild/vs9to8.py @@ -24,9 +24,9 @@ def vs9to8(src, dest): # Bah. VS8.0 does not expand macros in file names. # Replace them here. - lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-source-3.3.4') - lines = lines.replace('$(bsddbDir)\\..\\..', '..\\..\\..\\db-4.4.20\\build_win32\\..') - lines = lines.replace('$(bsddbDir)', '..\\..\\..\\db-4.4.20\\build_win32') + lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.5.9') + lines = lines.replace('$(bsddbDir)\\..\\..', '..\\..\\..\\db-4.7.25.0\\build_windows\\..') + lines = lines.replace('$(bsddbDir)', '..\\..\\..\\db-4.7.25.0\\build_windows') with open(destname, 'wb') as fout: lines = lines.replace("\n", "\r\n") -- cgit v0.12