[Python-checkins] r64597 - in python/trunk: Misc/NEWS PCbuild/sqlite3.vcproj

martin.v.loewis python-checkins at python.org
Mon Jun 30 08:57:39 CEST 2008


Author: martin.v.loewis
Date: Mon Jun 30 08:57:39 2008
New Revision: 64597

Log:
Issue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd

Modified:
   python/trunk/Misc/NEWS
   python/trunk/PCbuild/sqlite3.vcproj

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Jun 30 08:57:39 2008
@@ -17,6 +17,11 @@
   slice(None, 10, -1).indices(10) returns (9, 9, -1) instead of (9,
   10, -1).
 
+Build
+-----
+
+- Issue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd.
+
 What's New in Python 2.6 beta 1?
 ================================
 

Modified: python/trunk/PCbuild/sqlite3.vcproj
==============================================================================
--- python/trunk/PCbuild/sqlite3.vcproj	(original)
+++ python/trunk/PCbuild/sqlite3.vcproj	Mon Jun 30 08:57:39 2008
@@ -305,6 +305,7 @@
 			/>
 			<Tool
 				Name="VCLinkerTool"
+				OutputFile="$(OutDir)\$(ProjectName).dll"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -428,6 +429,7 @@
 			/>
 			<Tool
 				Name="VCLinkerTool"
+				OutputFile="$(OutDir)\$(ProjectName).dll"
 			/>
 			<Tool
 				Name="VCALinkTool"


More information about the Python-checkins mailing list