<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/PCbuild/_elementtree.vcxproj, branch bind-socket</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825)</title>
<updated>2019-02-14T16:31:30+00:00</updated>
<author>
<name>Paul Monson</name>
<email>paulmon@users.noreply.github.com</email>
</author>
<published>2019-02-14T16:31:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=8a1657b93469580ef345c7c91738587f3d76e87d'/>
<id>8a1657b93469580ef345c7c91738587f3d76e87d</id>
<content type='text'>
This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32507: Change Windows install to include app-local UCRT (#5119)</title>
<updated>2018-01-09T08:14:46+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2018-01-09T08:14:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=d135f20ae8887acc7716561bc8f4c7eb6d58d24c'/>
<id>d135f20ae8887acc7716561bc8f4c7eb6d58d24c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30947: Update libexpat from 2.2.1 to 2.2.3 (#3106)</title>
<updated>2017-08-18T21:43:54+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-08-18T21:43:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=93d0cb58b4da2a88c56f472c6c19491cc7a390df'/>
<id>93d0cb58b4da2a88c56f472c6c19491cc7a390df</id>
<content type='text'>
* 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 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
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30726: Fix elementtree warnings on Windows due to expat upgrade (#2319)</title>
<updated>2017-06-23T10:45:01+00:00</updated>
<author>
<name>Segev Finer</name>
<email>segev208@gmail.com</email>
</author>
<published>2017-06-23T10:45:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=87c65550730a8f85ce339ba197bce4fb7e836619'/>
<id>87c65550730a8f85ce339ba197bce4fb7e836619</id>
<content type='text'>
* bpo-30726: Fix elementtree warnings on Windows

Caused by usage of `getenv` which should be safe. And a few integer
truncations which should also be ok.

* bpo-30726: Don't ignore libexpat warnings which haypo intends to fix upstream
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-30726: Fix elementtree warnings on Windows

Caused by usage of `getenv` which should be safe. And a few integer
truncations which should also be ok.

* bpo-30726: Don't ignore libexpat warnings which haypo intends to fix upstream
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30726: PCbuild _elementtree: remove duplicate defines (#2348)</title>
<updated>2017-06-23T08:09:34+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-06-23T08:09:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=c8fb58bd7917151e63398587a7fc2126db7c26de'/>
<id>c8fb58bd7917151e63398587a7fc2126db7c26de</id>
<content type='text'>
bpo-30726, bpo-29591: libexpat 2.2.1 of Modules/expat/ now uses
a winconfig.h configuration file which already defines:

* XML_NS
* XML_DTD
* BYTEORDER=1234
* XML_CONTEXT_BYTES=1024
* HAVE_MEMMOVE

Remove these defines from PCbuild/_elementtree.vcxproj to prevent
compiler warnings.

Co-Authored-By: Jeremy Kloth &lt;jeremy.kloth@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bpo-30726, bpo-29591: libexpat 2.2.1 of Modules/expat/ now uses
a winconfig.h configuration file which already defines:

* XML_NS
* XML_DTD
* BYTEORDER=1234
* XML_CONTEXT_BYTES=1024
* HAVE_MEMMOVE

Remove these defines from PCbuild/_elementtree.vcxproj to prevent
compiler warnings.

Co-Authored-By: Jeremy Kloth &lt;jeremy.kloth@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Adds version info to all signed binaries on Windows.</title>
<updated>2016-04-06T19:35:24+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2016-04-06T19:35:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=b0660582cc9260022053c83dcfddd47891700147'/>
<id>b0660582cc9260022053c83dcfddd47891700147</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release.</title>
<updated>2014-11-22T20:54:57+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2014-11-22T20:54:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=65e4cb10d9d9964f30bc72561bf0e86833328a3b'/>
<id>65e4cb10d9d9964f30bc72561bf0e86833328a3b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up the PCBuild project files, removing redundant settings and</title>
<updated>2012-05-19T21:10:14+00:00</updated>
<author>
<name>Kristján Valur Jónsson</name>
<email>kristjan@ccpgames.com</email>
</author>
<published>2012-05-19T21:10:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=c45ea9ebc774d46260230a76e5b8c3c1de020250'/>
<id>c45ea9ebc774d46260230a76e5b8c3c1de020250</id>
<content type='text'>
use "references" to link to dependent projects.
Update readme and batch files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
use "references" to link to dependent projects.
Update readme and batch files.
</pre>
</div>
</content>
</entry>
<entry>
<title>changeset: 76969:0cbe1099226d</title>
<updated>2012-05-13T21:16:09+00:00</updated>
<author>
<name>Brian Curtin</name>
<email>brian@python.org</email>
</author>
<published>2012-05-13T21:16:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=40e41bb77c93b5f622f305e62c4e2177384f1f6c'/>
<id>40e41bb77c93b5f622f305e62c4e2177384f1f6c</id>
<content type='text'>
branch: vs2010
tag: tip
user: Brian Curtin &lt;brian@python.org&gt;
date: Sun May 13 16:15:11 2012 -0500
summary: Changes to allow Profile Guided Optimization builds to succeed on VS2010
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
branch: vs2010
tag: tip
user: Brian Curtin &lt;brian@python.org&gt;
date: Sun May 13 16:15:11 2012 -0500
summary: Changes to allow Profile Guided Optimization builds to succeed on VS2010
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #13210. Port the Windows build from VS2008 to VS2010.</title>
<updated>2012-05-13T16:19:23+00:00</updated>
<author>
<name>Brian Curtin</name>
<email>brian@python.org</email>
</author>
<published>2012-05-13T16:19:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=401f9f3d32dcebf5ead8079d46a83fe7c7631581'/>
<id>401f9f3d32dcebf5ead8079d46a83fe7c7631581</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
