diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-18 21:43:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 21:43:54 (GMT) |
commit | 93d0cb58b4da2a88c56f472c6c19491cc7a390df (patch) | |
tree | fb322e20a1808ece6a5fa3d9f3fb2a1c7f53bc14 /PCbuild | |
parent | c99d41f9c0304fcf06550515c3db55f93a629e9e (diff) | |
download | cpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.zip cpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.tar.gz cpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.tar.bz2 |
bpo-30947: Update libexpat from 2.2.1 to 2.2.3 (#3106)
* bpo-30947: Update libexpat from 2.2.1 to 2.2.3
* Add NEWS entry
* Add new loadlibrary.c
* expat_external.h: restore include "pyexpatns.h"
* PCbuild: add expat/loadlibrary.c
* Define XML_POOR_ENTROPY to compile expat
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_elementtree.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_elementtree.vcxproj.filters | 5 | ||||
-rw-r--r-- | PCbuild/pyexpat.vcxproj | 3 | ||||
-rw-r--r-- | PCbuild/pyexpat.vcxproj.filters | 5 |
4 files changed, 11 insertions, 3 deletions
diff --git a/PCbuild/_elementtree.vcxproj b/PCbuild/_elementtree.vcxproj index 639ba47..0db61f2 100644 --- a/PCbuild/_elementtree.vcxproj +++ b/PCbuild/_elementtree.vcxproj @@ -87,6 +87,7 @@ </ItemGroup> <ItemGroup> <ClCompile Include="..\Modules\_elementtree.c" /> + <ClCompile Include="..\Modules\expat\loadlibrary.c" /> <ClCompile Include="..\Modules\expat\xmlparse.c" /> <ClCompile Include="..\Modules\expat\xmlrole.c" /> <ClCompile Include="..\Modules\expat\xmltok.c" /> diff --git a/PCbuild/_elementtree.vcxproj.filters b/PCbuild/_elementtree.vcxproj.filters index ee78295..4597ee5 100644 --- a/PCbuild/_elementtree.vcxproj.filters +++ b/PCbuild/_elementtree.vcxproj.filters @@ -33,6 +33,9 @@ <ClInclude Include="..\Modules\expat\latin1tab.h"> <Filter>Header Files</Filter> </ClInclude> + <ClInclude Include="..\Modules\expat\loadlibrary.c"> + <Filter>Header Files</Filter> + </ClInclude> <ClInclude Include="..\Modules\expat\macconfig.h"> <Filter>Header Files</Filter> </ClInclude> @@ -69,4 +72,4 @@ <Filter>Source Files</Filter> </ClCompile> </ItemGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/pyexpat.vcxproj b/PCbuild/pyexpat.vcxproj index a2763f0..51ca69e 100644 --- a/PCbuild/pyexpat.vcxproj +++ b/PCbuild/pyexpat.vcxproj @@ -68,6 +68,7 @@ </ItemGroup> <ItemGroup> <ClCompile Include="..\Modules\pyexpat.c" /> + <ClCompile Include="..\Modules\expat\loadlibrary.c" /> <ClCompile Include="..\Modules\expat\xmlparse.c" /> <ClCompile Include="..\Modules\expat\xmlrole.c" /> <ClCompile Include="..\Modules\expat\xmltok.c" /> @@ -84,4 +85,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/pyexpat.vcxproj.filters b/PCbuild/pyexpat.vcxproj.filters index abf362f..cb02847 100644 --- a/PCbuild/pyexpat.vcxproj.filters +++ b/PCbuild/pyexpat.vcxproj.filters @@ -20,6 +20,9 @@ <ClCompile Include="..\Modules\pyexpat.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\expat\loadlibrary.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Modules\expat\xmlparse.c"> <Filter>Source Files</Filter> </ClCompile> @@ -30,4 +33,4 @@ <Filter>Source Files</Filter> </ClCompile> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |