summaryrefslogtreecommitdiffstats
path: root/Modules/Setup.config.in
Commit message (Collapse)AuthorAgeFilesLines
* gcmodule is now always compiledNeil Schemenauer2001-08-301-3/+0
|
* Move the signal module back into Setup.config.in so it can be enabledAndrew M. Kuchling2001-02-211-0/+3
| | | | and disabled from the configure script.
* Patch #102588 / PEP 229:Andrew M. Kuchling2001-01-171-26/+2
| | | | | | | The final piece of this change... Strip down Setup.config.in and Setup.dist to the minimal sets required to get a working Python; setup.py will handle the rest
* Eric the half-a-wit, driven to berserk rage after repeatedly doingEric S. Raymond2001-01-171-1/+11
| | | | | | | | | | | | | | builds during which he forgot to uncomment crucial library lines in Setup, walks into Guido's East End nightclub with a tactical nuclear weapon on his shoulder. Said nuclear weapon is promptly deployed exactly where it will do the most good, right in the middle of configure.in. With this patch, the set of libraries autoconfigured in is extended to include ndbm, gdbm, and crypt. This essentially eliminates any need to tweak Setup for a normal Linux build. "'E was a fair man. Cruel, but fair."
* Committing patch #103216, autodetect of dbmmodule support and buildingBarry Warsaw2001-01-151-0/+3
| | | | | | of dbmmodule dynamically by default (otherwise it can pull in dependencies with libdb that croak pybsddb3). This change moves the Setup line for dbmmodule to Setup.config.in.
* Adapted version of Eric Raymond's patches to automatically configureGuido van Rossum2001-01-101-8/+13
| | | | | | | curses and readline (for Linux, at least). These are done as shared libraries by default, and so is bsddb -- that seems to make the most sense.
* Update a comment to be correct.Fred Drake2000-10-261-3/+3
|
* autodetect presence of libdb - this allows bsddbmodule to be builtSkip Montanaro2000-09-081-1/+1
| | | | | automatically if dbopen is found in libc or libdb. This closes patch #101420
* Skip Montanaro <skip@mojam.com>:Fred Drake2000-08-311-0/+9
| | | | | | | | | | | Update the build structures to automatically detect the presence of BSD db, including the proper name of the header file to include. Has all the expected niceties associated with yet-more-configure-options. ;) This checkin includes changes for non-generated files only; subsequent checkin will catch those. This is part of SourceForge patch #101272.
* Fixed this problem.Thomas Wouters2000-08-261-4/+0
|
* Setup.thread.in was misnamed so it has been replaced byBarry Warsaw2000-06-301-0/+14
Setup.config.in. The latter contains all configure-time selectable modules; currently thread and gc.