summaryrefslogtreecommitdiffstats
path: root/PC/VC6
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 70448 via svnmerge fromHirokazu Yamamoto2009-03-183-49/+89
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70448 | hirokazu.yamamoto | 2009-03-18 19:17:26 +0900 | 3 lines Updated openssl support on VC6. (openssl-0.9.6g is old, cannot compile with _ssl.c) If you use http://svn.python.org/projects/external/openssl-0.9.8g, Perl is not needed. This scheme was ported from PCBuild. ........
* Merged revisions 69494 via svnmerge fromHirokazu Yamamoto2009-02-103-218/+218
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69494 | hirokazu.yamamoto | 2009-02-10 22:31:28 +0900 | 1 line Fixed svn:eol-style. ........
* Merged revisions 68470 via svnmerge fromHirokazu Yamamoto2009-01-101-0/+81
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68470 | hirokazu.yamamoto | 2009-01-10 18:18:16 +0900 | 1 line Added helper script to build Tcl/Tk. ........
* Merged revisions 68469 via svnmerge fromHirokazu Yamamoto2009-01-102-1/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68469 | hirokazu.yamamoto | 2009-01-10 17:12:09 +0900 | 1 line Link to debug version of Tcl/Tk when python is built as debug version. ........
* Merged revisions 68468 via svnmerge fromHirokazu Yamamoto2009-01-103-18/+43
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68468 | hirokazu.yamamoto | 2009-01-10 17:09:43 +0900 | 1 line Bump up Tcl/Tk version on VC6. (tcl8.4.12 -> tcl8.5.2, tk8.4.12 -> tk8.5.2, tix8.4.0 -> tix8.4.3) ........
* Merged revisions 68439 via svnmerge fromHirokazu Yamamoto2009-01-092-11/+11
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68439 | hirokazu.yamamoto | 2009-01-09 13:10:40 +0900 | 1 line Bump up bsddb version on VC6. (db-4.4.20 -> db-4.7.25) ........
* Merged revisions 68435 via svnmerge fromHirokazu Yamamoto2009-01-092-8/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68435 | hirokazu.yamamoto | 2009-01-09 12:32:46 +0900 | 1 line Bump up bzip2 version on VC6. (bzip2-1.0.3 -> bzip2-1.0.5) ........
* Added _multiprocessing module support. (VC6)Hirokazu Yamamoto2008-08-142-0/+130
|
* Issue #2065: VC6 related fix.Hirokazu Yamamoto2008-08-148-45/+169
| | | | | | | | | | | | | | | | | | | | - PC/VC6/_bsddb.dsp: removed '/nodefaultlib:"msvcrt"' to fix linker error. - PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw: added new module support. - PC/VC6/_sqlite3.dsp: /D "MODULE_NAME=\"sqlite3\"" caused extra leading space like #define MODULE_NAME " sqlite3" so uses /D MODULE_NAME=\"sqlite3\" instead. - PC/VC6/python.dsp: changed stack size to 2MB to avoid stack overflow on some tests.
* Restore support for Microsoft VC6 compiler.Amaury Forgeot d'Arc2008-06-132-2/+6
| | | | | | | Some functions in the msvcrt module are skipped, and socket.ioctl is enabled only when using a more recent Platform SDK. (and yes, there are still companies that use a 10-years old compiler)
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-101-1/+1
| | | | Part of reverting most of r63675 per the mailing list discussion.
* Used vs9to8.py to port all VS9.0 changes to 8.0Christian Heimes2008-05-261-4/+4
| | | | Updated VS7.1 and VC6 project files
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+4
| | | | | | Ippolito. Closes issue #2750.
* Added new files to Windows project filesChristian Heimes2008-04-181-0/+4
| | | | More Windows related fixes are coming soon
* Update project files for all Windows supported compilersAmaury Forgeot d'Arc2008-04-141-0/+4
|
* Issue 2408: remove the _types moduleAmaury Forgeot d'Arc2008-04-081-4/+0
| | | | | | | | | It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler.
* Repair compilation for Visual Studio 2005.Amaury Forgeot d'Arc2008-03-281-0/+16
| | | | | | | I applied the same changes manually to VS7.1 and VC6 files; completely untested. (Christian, don't try too hard merging this change into py3k. It will be easier to do the same work again on the branch)
* Compilation was broken on Windows since the introduction of Advanced String ↵Amaury Forgeot d'Arc2008-02-171-8/+12
| | | | | | | Formatting. Only PCBuild (vs9) was really tested. Changes for older compilers were done manually.
* Reverted last transaction. It's the wrong branch.Christian Heimes2008-01-046-167/+57
|
* And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks ↵Christian Heimes2008-01-046-57/+167
| | | | Hiro!
* Add the necessary dependency for the Windows VC6 build to ensure 'pythoncore'Trent Mick2007-04-131-0/+3
| | | | | is built before '_ctypes' is attempted. Will backport to 2.5 once it is unfrozen for 2.5.1.
* Remove obsolete file. Will backport.Martin v. Löwis2006-10-171-0/+0
|
* Patch #1457736: Update VC6 to use current PCbuild settings.Martin v. Löwis2006-10-1711-390/+278
| | | | Will backport to 2.5.
* Set the eol-style for project files to "CRLF".Martin v. Löwis2006-10-153-424/+424
|
* Patch #1577551: Add ctypes and ET build support for VC6.Martin v. Löwis2006-10-154-16/+476
| | | | Will backport to 2.5.
* Patch #1576954: Update VC6 build directory; remove redundantMartin v. Löwis2006-10-151-18/+78
| | | | files in VC7. Will backport to 2.5.
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-1/+1
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-161-8/+0
|
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-14/+0
| | | | properties now.
* Add AST files to VC6 build.Raymond Hettinger2005-10-231-0/+16
|
* Update the PC configuration and project files for sha256 and sha512.Raymond Hettinger2005-08-241-0/+8
|
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+4
| | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
* Update the MSC6 pythoncore projects to compile for Py2.5Raymond Hettinger2004-12-021-2/+2
|
* Add _subprocess.cMartin v. Löwis2004-10-151-0/+4
|
* Remove rotor and xreadlines from VC 6 build.Raymond Hettinger2004-08-311-8/+0
|
* Remove unused source file from Windows project files.Hye-Shik Chang2004-07-281-4/+0
|
* Teach VC6 project file about the new cjkcodecs structure.Hye-Shik Chang2004-07-181-77/+9
|
* Teach MSVC 6 about pystrtod.c.Tim Peters2004-06-081-0/+4
|
* Remove the pcre module.Thomas Heller2004-06-021-8/+0
|
* Add genobject.c to the MSVC++ 6.0 build.Raymond Hettinger2004-06-011-0/+4
|
* Complete perky's name change patch.Raymond Hettinger2004-04-271-1/+1
|
* Remove the Modules/heaqmodule.c, and add Modules/_heapmodule.c, soThomas Heller2004-04-221-4/+4
| | | | that the project compiles again with VC6.
* Ignore oodles of MSVC-generated files.Tim Peters2004-03-201-0/+14
|
* A helper for rt.bat, copied (but with path adjustment) from PCbuild.Tim Peters2004-03-201-0/+25
|
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-0/+4
| | | | | | * Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming
* Added the cjkcodecs files to the MSVC 6 build.Tim Peters2004-01-251-0/+100
|
* SF Patch #864863: Bisect C implementationRaymond Hettinger2004-01-051-0/+4
| | | | (Contributed by Dmitry Vasiliev.)
* That's it -- works as well under VC6 as it ever did now.Tim Peters2004-01-041-0/+41
|
* The _tkinter subproject works with VC6 again.Tim Peters2004-01-041-2/+2
|
* The bz2 subproject works with VC6 again.Tim Peters2004-01-041-4/+4
|