[Python-checkins] r51114 - in python/trunk: Misc/NEWS PCbuild/_msi.vcproj

Thomas Heller theller at python.net
Fri Aug 4 21:52:46 CEST 2006


thomas.heller schrieb:
> Author: thomas.heller
> Date: Fri Aug  4 21:49:31 2006
> New Revision: 51114
> 
> Modified:
>    python/trunk/Misc/NEWS
>    python/trunk/PCbuild/_msi.vcproj
> Log:
> Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd.
> Fix the name of the pdb file as well.

Someone with Visual Studio 2005 should probably fix the PCBuild8 project file.

> Modified: python/trunk/Misc/NEWS
> ==============================================================================
> --- python/trunk/Misc/NEWS	(original)
> +++ python/trunk/Misc/NEWS	Fri Aug  4 21:49:31 2006
> @@ -48,6 +48,8 @@
>  Build
>  -----
>  
> +- Bug #1534738, win32 debug version of _msi should be _msi_d.pyd.
> +
>  - Bug #1530448, ctypes buld failure on Solaris 10 was fixed.
>  
>  
> 
> Modified: python/trunk/PCbuild/_msi.vcproj
> ==============================================================================
> --- python/trunk/PCbuild/_msi.vcproj	(original)
> +++ python/trunk/PCbuild/_msi.vcproj	Fri Aug  4 21:49:31 2006
> @@ -36,11 +36,11 @@
>  			<Tool
>  				Name="VCLinkerTool"
>  				AdditionalDependencies="fci.lib msi.lib rpcrt4.lib"
> -				OutputFile="./_msi.pyd"
> +				OutputFile="./_msi_d.pyd"
>  				LinkIncremental="1"
>  				SuppressStartupBanner="TRUE"
>  				GenerateDebugInformation="TRUE"
> -				ProgramDatabaseFile=".\./_msi.pdb"
> +				ProgramDatabaseFile=".\./_msi_d.pdb"
>  				BaseAddress="0x1D160000"
>  				ImportLibrary=".\./_msi.lib"
>  				TargetMachine="1"/>



More information about the Python-checkins mailing list