summaryrefslogtreecommitdiffstats
path: root/PCbuild
Commit message (Collapse)AuthorAgeFilesLines
* Add namespaceobject.h and namespaceobject.c to pythoncore.vcxprojRichard Oudkerk2012-06-041-1/+3
|
* Update to Tcl/Tk 8.5.11.Martin v. Löwis2012-05-311-3/+3
|
* Issue #14952: Fix incorrect output dll names for win64/debug builds, causingKristjan Valur Jonsson2012-05-311-4/+0
| | | | the dll importer on windows to fail.
* Update build.bat for VS2010Brian Curtin2012-05-221-3/+4
|
* Issue 14821:Kristján Valur Jónsson2012-05-201-12/+0
| | | | | | | If a dependency is expressed both in the .sln file and the .vcxproj file msbuild is confused. Removing the .sln dependencies which are deprecated anyway. See: http://blogs.msdn.com/b/visualstudio/archive/2010/12/21/incorrect-solution-build-ordering-when-using-msbuild-exe.aspx
* Remove missing files from the PCbuild pythoncore project. This avoids aKristján Valur Jónsson2012-05-192-16/+0
| | | | "missing dependency", causing pythocore to be rebuilt every time.
* Clean up the PCBuild project files, removing redundant settings andKristján Valur Jónsson2012-05-1938-260/+159
| | | | | use "references" to link to dependent projects. Update readme and batch files.
* Upgrade OpenSSL to 1.0.1cMartin v. Löwis2012-05-182-2/+2
|
* Assume nasm.Martin v. Löwis2012-05-181-2/+2
|
* merge 3.2Martin v. Löwis2012-05-183-3/+3
|\
| * Drop double quoting again. I'm at a loss when to quote and when not.Martin v. Löwis2012-05-181-1/+1
| |
| * Upgrade OpenSSL to 1.0.0jMartin v. Löwis2012-05-182-2/+2
| |
* | merge headsMartin v. Löwis2012-05-181-33/+9
|\ \
| * | Port to VS 2010.Martin v. Löwis2012-05-181-2/+2
| | |
| * | Merge 3.2 build_ssl changes.Martin v. Löwis2012-05-181-33/+9
| |\ \ | | |/
| | * Add another set of quotes to make cmd.exe happy.Martin v. Löwis2012-05-181-1/+1
| | |
| | * Fetch openssl directory from pyproject.vsprops.Martin v. Löwis2012-05-181-32/+8
| | |
| | * Upgrade bzip2 to 1.0.6.Martin v. Löwis2012-05-143-8/+8
| | |
* | | Stop including gzio in the build; it's not used.Martin v. Löwis2012-05-152-9/+0
| | |
* | | Don't build xxlimited in debug mode.Martin v. Löwis2012-05-141-2/+0
|/ /
* | Upgrade sqlite to 3.7.12.Martin v. Löwis2012-05-141-1/+1
| |
* | Relabel bzip2 filters.Martin v. Löwis2012-05-141-12/+12
| |
* | Upgrade bzip2 to 1.0.6.Martin v. Löwis2012-05-142-6/+6
| |
* | Fix release build settings.Martin v. Löwis2012-05-141-2/+0
| |
* | changeset: 76969:0cbe1099226dBrian Curtin2012-05-1326-8/+165
| | | | | | | | | | | | | | | | branch: vs2010 tag: tip user: Brian Curtin <brian@python.org> date: Sun May 13 16:15:11 2012 -0500 summary: Changes to allow Profile Guided Optimization builds to succeed on VS2010
* | Move out VS9 project files to PC\VS9.0 folder. Fixes #13210Brian Curtin2012-05-1331-16834/+0
| |
* | Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin2012-05-1380-397/+9891
| |
* | Kill remaining mentions of import_nt.cAntoine Pitrou2012-05-041-4/+0
| |
* | Closes #14093: Added Mercurial version information to Windows builds.Vinay Sajip2012-05-041-1/+66
| |
* | Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-182-8/+4
| | | | | | | | | | _multiprocessing.win32 modules now live in a single module "_winapi". Patch by sbt.
* | Merge with 3.2: use ws2_32.lib rather than wsock32.lib on windows.Kristján Valur Jónsson2012-04-152-14/+14
|\ \ | |/
| * Make all socket related modules link with ws2_32.lib on windows, likeKristján Valur Jónsson2012-04-152-14/+14
| | | | | | | | _socket does. Some were using the older wsock32.lib.
* | Add MASM define to PGI and PGO buildsMartin v. Löwis2012-04-011-743/+743
| |
* | Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-212-0/+764
| | | | | | | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.
* | Remove non-existing file from pythoncore project.krisvale2012-03-211-4/+0
| |
* | Issue #14180: Fix pythoncore.vcproj, Modules/_time.[ch] have been removedVictor Stinner2012-03-131-8/+0
| |
* | Enable PGI/PGO builds for x64 python3.dllMartin v. Löwis2012-03-041-6/+6
| |
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-253-0/+545
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory.
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-0/+4
|\ \ | |/
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-0/+4
| |\ | | | | | | | | | | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
| | * Issue #13703: add a way to randomize the hash values of basic types (str, ↵Georg Brandl2012-02-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
* | | Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-294-0/+568
| | |
* | | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-061-0/+8
|\ \ \ | |/ / | | | | | | | | | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot.
| * | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-061-0/+8
| | | | | | | | | | | | | | | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot.
* | | Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an arrayVictor Stinner2011-09-281-0/+4
| | | | | | | | | | | | | | | | | | Move other various macros to pymcacro.h Thanks Rusty Russell for having written these amazing C macros!
* | | Issue #11743: Rewrite multiprocessing connection classes in pure Python.Antoine Pitrou2011-05-091-12/+0
| | |
* | | Issue #5863: Rewrite BZ2File in pure Python, and allow it to acceptAntoine Pitrou2011-04-033-6/+6
| | | | | | | | | | | | | | | file-like objects using a new `fileobj` constructor argument. Patch by Nadeem Vawda.
* | | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+4
| | |
* | | Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0634-14458/+14458
|\ \ \ | |/ / | | | | | | | | | | | | the files will have the right line ending even if the extension is not active.
| * | Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0638-15905/+15905
| |\ \ | | |/ | | | | | | | | | | | | the files will have the right line ending even if the extension is not active.