summaryrefslogtreecommitdiffstats
path: root/PCbuild
Commit message (Collapse)AuthorAgeFilesLines
* Support for building the new w9xpopen.exe, which is used for reliable popen ↵Mark Hammond2000-08-142-0/+109
| | | | operation on Windows 9x.
* Revert this checkin:Trent Mick2000-08-1317-4040/+4040
| | | | | http://www.python.org/pipermail/python-checkins/2000-August/007072.html and make PCbuild/*.dsp PCbuild/*.dsw binary again.
* These files all used to be tagged as binary in CVS. I recently changed this soTrent Mick2000-08-1117-4040/+4040
| | | | | | that these files are treated as normal text files (which they are). However, the files also had to be changed to be stored in CVS internally with UNIX line terminators (they had DOS line terminators internally before this commit).
* somehow the 'Total Keys=1' disappears. No other changes.Guido van Rossum2000-08-011-23/+0
|
* Typo repair.Tim Peters2000-07-011-1/+1
|
* A bunch of project files were checked in as text files.Guido van Rossum2000-07-014-1991/+1991
| | | | They should all be binary (cvs admin -kv has now been applied).
* Add ucnhash (new subproject).Guido van Rossum2000-07-011-1/+1
|
* The Python include paths were not specified.Mark Hammond2000-07-011-2/+2
|
* Define a magical symbol and magic include path so it will compile withoutGuido van Rossum2000-07-011-0/+6
| | | | changes to the bsddb source.
* Add ucnhash to the workspace, as a dependency of python20.Mark Hammond2000-07-011-1/+15
|
* ucnhash now correctly builds for Windows.Mark Hammond2000-07-011-20/+16
|
* Update all projects so Debug builds use "/Zi" instead of "/ZI", which means ↵Mark Hammond2000-07-015-1893/+1894
| | | | | | everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do!
* Repaired two URLs.Tim Peters2000-07-011-6/+6
|
* Update for 2.0b1. Also add more text, to be more explicit aboutTim Peters2000-07-011-29/+87
| | | | | | | | what the dozen+ subprojects are for, which are and aren't expected to build out of the box, and what else is needed to get them all to build. Also explained that Alpha configurations don't refer to pre-beta, but to the Alpha processor! That's baffled me for years <0.7 wink>.
* Add back a missing CRLF line ending.Guido van Rossum2000-06-301-1/+1
|
* Oops.Guido van Rossum2000-06-301-2/+2
| | | | | | | - The Tcl minor version should be 3 -- we're now using 8.3.1. - Remove the version number from yet another Tcl source file. Note that Tcl should be installed in C:\src\tcl for this to work.
* Poke and hope for Tcl version: now settable through _TCLMINOR_Guido van Rossum2000-06-301-4/+8
| | | | variable...
* add gcmoduleJeremy Hylton2000-06-301-0/+14
|
* Change the include etc paths to Tcl 8.3.1.Guido van Rossum2000-06-301-4/+4
|
* Move Wise install dir consistently to C:\Wise. Don't use %_WISE_% inGuido van Rossum2000-06-301-3/+3
| | | | include, it doesn't seem to work.
* Poke and hope for Tim...Guido van Rossum2000-06-301-6/+6
| | | | (Change title to beta 1, change a few paths for typical Win98 setup.)
* More 2.0 stuff -- fix workspace, remove 1.6 filesGuido van Rossum2000-06-303-3009/+16
|
* Making a tiny change to figure out what I'm going to screw upTim Peters2000-06-301-1/+2
| | | | by trying to use CVS under Windows at all ...
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-0/+14
|
* Bump version to 2.0.Guido van Rossum2000-06-292-0/+2920
|
* Finish converting the winreg extension to _winreg.Fred Drake2000-06-291-3/+3
|
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-281-0/+103
| | | | | | | MSVC project file for the new module ucnhash. This may have to be added to pcbuild.dsw with an dependancy on python16. By Bill Tutt.
* correct case in python16.dsp to allow build with VS6Trent Mick2000-06-061-5/+5
|
* make sure the case is correct (damned case-sensitive languages :-)Jeremy Hylton2000-06-021-7/+7
|
* add new Python/exceptions.c to python16 project (courtesy Trent Mick)Jeremy Hylton2000-06-011-0/+15
|
* The debug settings for zlib contained a bogus reference to msvcrt inGuido van Rossum2000-05-021-1/+1
| | | | the /nodefaultlib: option.
* Mark Hammond: Added dependency of winsound project on python16Guido van Rossum2000-04-251-0/+3
| | | | | | project. [However I didn't add the other changes in his patch, which were just taking away the source code control stuff -- this doesn't hurt and would come back as soon as I make another change. --GvR]
* Oops -- Mark forgot to add "0x" to the /base: argument.Guido van Rossum2000-04-241-2/+2
|
* Changes by Mark Hammond to ignore more by-products of the build.Guido van Rossum2000-04-241-1/+2
|
* Added winsound project to workspace, and added -I options to winsoundGuido van Rossum2000-04-212-4/+20
|
* Mark Hammond:Guido van Rossum2000-04-2114-107/+191
| | | | | | | | | | | | | | | | | | | * Temp directory for all projects are now specific to the project (rather than common as before). This avoids any conflicts with debug symbols or common file names etc. NOTE: You should manually delete your existing build directory after applying this patch, as the MSVC "clean" command will now only clean the new temporary directories - not the existing common temp directory. * Base address for all extension modules updated. PC\dllbase_nt.txt also updated. Erroneous "libpath" directory removed for all projects. * winsound module moved from a builtin module to an extension module. This was done primarily to avoid Python16.dll needing to pull in winmm.dll. Really dumb test added for winsound - but if nothing else it ensures the module imports.
* Install the docs (with fewer rules).Guido van Rossum2000-04-101-54/+14
| | | | Add descriptions for the system variables.
* Added project dependencies -- Mark is right, these are needed.Guido van Rossum2000-04-101-0/+39
|
* Strangely, we *do* need to define ZLIB_DLL.Guido van Rossum2000-04-101-2/+2
| | | | | Do it in the project file rather than in the source, so it's easier for Mark to change.
* Moved socket, select, unicodedata to their own PYD. This shouldGuido van Rossum2000-04-0612-84/+373
| | | | | | | reduce the size of python16.dll to almost its 1.5.2 size, and remove dependencies on winsock unless sockets are actually used. Note that soundex is simply no longer supported.
* Add msvcrt to list of libraries to ignore in Debug mode.Guido van Rossum2000-04-061-1/+1
|
* Forgot to save the project file -- this also reflects the use ofGuido van Rossum2000-04-051-4/+4
| | | | | Tcl/Tk 8.2 instead of 8.3, because 8.3.0 often crashes on closing a window.
* Lots of cleanup things.Guido van Rossum2000-04-051-190/+111
| | | | | | | | | | | | | | | | | | | | | Added the bitmaps back, and added the wizard style program group selection dialog. Got rid of references to backup etc. inserted by the installer wizard -- we don't use these. Got rid of conditionals for Windows 3.1, ditto. Changed version to 1.6a2. Changed default install directory to "C:\Python16" (not really, but close). Install only one copy of python16.lib. Install the two MS DLLs (versioned) and python16.dll (unversioned) in the system directory. Install Tcl/Tk and expat in the DLLs directory.
* Adding pyexpat project.Guido van Rossum2000-03-312-0/+206
|
* Buncha last-minute fixesGuido van Rossum2000-03-311-16/+33
|
* Added _sre project to workspace.Guido van Rossum2000-03-312-0/+198
|
* Bit of cleanup on the projects.Guido van Rossum2000-03-314-73/+54
| | | | Some refinements on the Wise file, also adding mmap.pyd.
* Added mmap project. (Mark Hammond.)Guido van Rossum2000-03-312-0/+109
|
* Mark Hammond: ensure the new standard module winreg is installed.Guido van Rossum2000-03-301-0/+5
|
* Internal changes.Guido van Rossum2000-03-301-5/+4
|