Merged in stevedower/cpython350 (pull request #6)
Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk.
This commit is contained in:
commit
90f5bca3b6
|
@ -16,6 +16,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk.
|
||||||
|
|
||||||
- Issue #24839: platform._syscmd_ver raises DeprecationWarning
|
- Issue #24839: platform._syscmd_ver raises DeprecationWarning
|
||||||
|
|
||||||
What's New in Python 3.5.0 release candidate 1?
|
What's New in Python 3.5.0 release candidate 1?
|
||||||
|
|
|
@ -55,9 +55,9 @@ for %%e in (
|
||||||
bzip2-1.0.6
|
bzip2-1.0.6
|
||||||
nasm-2.11.06
|
nasm-2.11.06
|
||||||
openssl-1.0.2d
|
openssl-1.0.2d
|
||||||
tcl-core-8.6.4.1
|
tcl-core-8.6.4.2
|
||||||
tk-8.6.4.1
|
tk-8.6.4.2
|
||||||
tix-8.4.3.4
|
tix-8.4.3.6
|
||||||
sqlite-3.8.11.0
|
sqlite-3.8.11.0
|
||||||
xz-5.0.5
|
xz-5.0.5
|
||||||
) do (
|
) do (
|
||||||
|
|
|
@ -236,7 +236,7 @@ _sqlite3
|
||||||
Homepage:
|
Homepage:
|
||||||
http://www.sqlite.org/
|
http://www.sqlite.org/
|
||||||
_tkinter
|
_tkinter
|
||||||
Wraps version 8.6.1 of the Tk windowing system.
|
Wraps version 8.6.4 of the Tk windowing system.
|
||||||
Homepage:
|
Homepage:
|
||||||
http://www.tcl.tk/
|
http://www.tcl.tk/
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,8 @@
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TclOpts Condition="$(Configuration) == 'Debug'">symbols</TclOpts>
|
<TclOpts>ucrt</TclOpts>
|
||||||
|
<TclOpts Condition="$(Configuration) == 'Debug'">symbols,ucrt</TclOpts>
|
||||||
<TclDirs>INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs>
|
<TclDirs>INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs>
|
||||||
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
||||||
<NMakeBuildCommandLine>setlocal
|
<NMakeBuildCommandLine>setlocal
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<TclMajorVersion>8</TclMajorVersion>
|
<TclMajorVersion>8</TclMajorVersion>
|
||||||
<TclMinorVersion>6</TclMinorVersion>
|
<TclMinorVersion>6</TclMinorVersion>
|
||||||
<TclPatchLevel>4</TclPatchLevel>
|
<TclPatchLevel>4</TclPatchLevel>
|
||||||
<TclRevision>1</TclRevision>
|
<TclRevision>2</TclRevision>
|
||||||
<TkMajorVersion>$(TclMajorVersion)</TkMajorVersion>
|
<TkMajorVersion>$(TclMajorVersion)</TkMajorVersion>
|
||||||
<TkMinorVersion>$(TclMinorVersion)</TkMinorVersion>
|
<TkMinorVersion>$(TclMinorVersion)</TkMinorVersion>
|
||||||
<TkPatchLevel>$(TclPatchLevel)</TkPatchLevel>
|
<TkPatchLevel>$(TclPatchLevel)</TkPatchLevel>
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
<TixMajorVersion>8</TixMajorVersion>
|
<TixMajorVersion>8</TixMajorVersion>
|
||||||
<TixMinorVersion>4</TixMinorVersion>
|
<TixMinorVersion>4</TixMinorVersion>
|
||||||
<TixPatchLevel>3</TixPatchLevel>
|
<TixPatchLevel>3</TixPatchLevel>
|
||||||
<TixRevision>4</TixRevision>
|
<TixRevision>6</TixRevision>
|
||||||
<tclDir>$(ExternalsDir)tcl-core-$(TclMajorVersion).$(TclMinorVersion).$(TclPatchLevel).$(TclRevision)\</tclDir>
|
<tclDir>$(ExternalsDir)tcl-core-$(TclMajorVersion).$(TclMinorVersion).$(TclPatchLevel).$(TclRevision)\</tclDir>
|
||||||
<tkDir>$(ExternalsDir)tk-$(TkMajorVersion).$(TkMinorVersion).$(TkPatchLevel).$(TkRevision)\</tkDir>
|
<tkDir>$(ExternalsDir)tk-$(TkMajorVersion).$(TkMinorVersion).$(TkPatchLevel).$(TkRevision)\</tkDir>
|
||||||
<tixDir>$(ExternalsDir)tix-$(TixMajorVersion).$(TixMinorVersion).$(TixPatchLevel).$(TixRevision)\</tixDir>
|
<tixDir>$(ExternalsDir)tix-$(TixMajorVersion).$(TixMinorVersion).$(TixPatchLevel).$(TixRevision)\</tixDir>
|
||||||
|
|
|
@ -56,11 +56,9 @@
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TkOpts>msvcrt</TkOpts>
|
|
||||||
<TkOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TkOpts>
|
|
||||||
<TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs>
|
<TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs>
|
||||||
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 TCL_DBGX=g DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 UCRT=1 TCL_DBGX=g TK_DBGX=g</DebugFlags>
|
||||||
<DebugFlags Condition="'$(Configuration)' != 'Debug'">DEBUG=0 NODEBUG=1</DebugFlags>
|
<DebugFlags Condition="'$(Configuration)' != 'Debug'">DEBUG=0 NODEBUG=1 UCRT=1</DebugFlags>
|
||||||
<NMakeBuildCommandLine>setlocal
|
<NMakeBuildCommandLine>setlocal
|
||||||
@(ExpectedOutputs->'if not exist "%(FullPath)" goto build','
|
@(ExpectedOutputs->'if not exist "%(FullPath)" goto build','
|
||||||
')
|
')
|
||||||
|
|
|
@ -60,8 +60,8 @@
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TkOpts>msvcrt</TkOpts>
|
<TkOpts>ucrt</TkOpts>
|
||||||
<TkOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TkOpts>
|
<TkOpts Condition="$(Configuration) == 'Debug'">symbols,ucrt</TkOpts>
|
||||||
<TkDirs>TCLDIR="$(tclDir.TrimEnd(`\`))" INSTALLDIR="$(OutDir.TrimEnd(`\`))"</TkDirs>
|
<TkDirs>TCLDIR="$(tclDir.TrimEnd(`\`))" INSTALLDIR="$(OutDir.TrimEnd(`\`))"</TkDirs>
|
||||||
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
||||||
<NMakeBuildCommandLine>setlocal
|
<NMakeBuildCommandLine>setlocal
|
||||||
|
|
|
@ -27,13 +27,6 @@
|
||||||
<Target_>DLLs\</Target_>
|
<Target_>DLLs\</Target_>
|
||||||
<Group>tcltk_dlls</Group>
|
<Group>tcltk_dlls</Group>
|
||||||
</InstallFiles>
|
</InstallFiles>
|
||||||
<InstallFiles Include="$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\vcruntime$(PlatformToolset.Substring(1)).dll">
|
|
||||||
<SourceBase>$(VCInstallDir)redist\$(Platform)\</SourceBase>
|
|
||||||
<Source>$(VCInstallDir)redist\$(Platform)\</Source>
|
|
||||||
<TargetBase>$(VCInstallDir)redist\$(Platform)\</TargetBase>
|
|
||||||
<Target_>DLLs\</Target_>
|
|
||||||
<Group>tcltk_dlls</Group>
|
|
||||||
</InstallFiles>
|
|
||||||
|
|
||||||
<InstallFiles Include="$(tcltkDir)lib\**\*">
|
<InstallFiles Include="$(tcltkDir)lib\**\*">
|
||||||
<SourceBase>$(tcltkDir)</SourceBase>
|
<SourceBase>$(tcltkDir)</SourceBase>
|
||||||
|
|
Loading…
Reference in New Issue