summaryrefslogtreecommitdiffstats
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* unicodedatabase.c is no longer needed thanks to Fredrik's patches.Marc-André Lemburg2001-01-221-2/+1
|
* Check for None to decide when pyexpat should not be built.Martin v. Löwis2001-01-211-1/+1
|
* GvR pointed out the correct way to check for statically built modules;Andrew M. Kuchling2001-01-191-8/+8
| | | | | sys.builtin_module_names Add SSL directories in /usr/contrib/ for FreeBSD
* Revert a single line of my large change earlier today; this broke the abilityAndrew M. Kuchling2001-01-191-0/+1
| | | | | | to build in a subdirectory. The additional directory is unfortunately redundant when *not* building in a subdirectory, which is why I took it out.
* Patch from Barry: gets rid of two unused imports,Andrew M. Kuchling2001-01-181-14/+28
| | | | | | | wraps to 80chars, and adds some really hacky setting of compiler options when CC and LDSHARED are given on the make command line. (The Distutils should probably provide a utility function to automatically handle a number of common environment variables)
* Sizable reorganization of how header and library files are foundAndrew M. Kuchling2001-01-181-105/+166
| | | | | | | | Check additional include directories for SSL Don't build modules that are linked into the Python binary statically Factored out the detection of Tkinter out into a method, since it's the most complicated module to set up Simplify the logic for detecting Tkinter
* The signal module has to be compiled statically, so add it to Setup.distAndrew M. Kuchling2001-01-171-9/+0
| | | | and remove support for it from setup.py
* - compile struct moduleNeil Schemenauer2001-01-171-2/+2
| | | | - get version number from sys.version_info
* Fix for bug #129173, reported by Skip Montanaro:Andrew M. Kuchling2001-01-171-4/+11
| | | | | Check for the two possible headers for Expat, expat.h and xmlparse.h, and only compile the pyexpat module if one of them is found.
* Use the extended library search path when looking for readline (simpleAndrew M. Kuchling2001-01-171-1/+1
| | | | oversight in using self.compiler.library_dirs)
* Various clean-ups:Andrew M. Kuchling2001-01-171-15/+7
| | | | | | * Uncomment the xreadlines module * The Tcl/Tk detection code doesn't need to worry about pre-8.0 versions * Fix some debugging changes (not running ar, a commented-out line)
* [Patch #102588/PEP 229]:Andrew M. Kuchling2001-01-171-0/+475
Check in the setup.py script, and the setup.cfg.in file, which handle compiling and installing as many extension modules as possible