Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert Patch #670715: iconv support. | Martin v. Löwis | 2003-04-03 | 1 | -18/+0 |
| | |||||
* | SF patch #712367, get build working on AIX | Neal Norwitz | 2003-03-31 | 1 | -1/+5 |
| | | | | | | | configure change is necessary to pass "." to makexp_aix so that dynamic modules work setup change gets curses working | ||||
* | Get locale module to build on aix4 | Neal Norwitz | 2003-03-21 | 1 | -1/+1 |
| | |||||
* | build _csv extension module | Skip Montanaro | 2003-03-20 | 1 | -0/+3 |
| | |||||
* | Build the OSATerminology module on MacOSX. | Jack Jansen | 2003-03-06 | 1 | -0/+2 |
| | |||||
* | _CG module only needs the ApplicationServices framework, not Carbon. | Jack Jansen | 2003-03-02 | 1 | -2/+1 |
| | |||||
* | Just pointed out the code was better written with | Neal Norwitz | 2003-02-28 | 1 | -25/+24 |
| | | | | | | | try: # ... except ImportError, why: except: # ... All other changes are re-indenting/formatting. | ||||
* | Fix SF bug #690012 (among others), iconv_codec stops build | Neal Norwitz | 2003-02-28 | 1 | -3/+5 |
| | | | | | | | | Change setup.py to catch all exceptions. - Rename module if the exception was an ImportError - Only warn if the exception was any other error Revert _iconv_codec to raising a RuntimeError. | ||||
* | That fix was bogus, undone. The problem is that the iconv include file | Jack Jansen | 2003-02-24 | 1 | -3/+3 |
| | | | | | is found if you are running fink, but the module doesn't work. For now I disabled building iconv_codec on darwin. | ||||
* | The test for iconv_incs tested explicitly for None, but [] is returned | Jack Jansen | 2003-02-24 | 1 | -2/+2 |
| | | | | if the include files cannot be found. | ||||
* | ossaudiodev has been building, so remove unnecessary pass and invalid comment | Neal Norwitz | 2003-02-23 | 1 | -2/+0 |
| | |||||
* | Add PEP 301 metadata. | Guido van Rossum | 2003-02-20 | 1 | -2/+42 |
| | |||||
* | Don't use self.announce() in a function that's not a method. | Guido van Rossum | 2003-02-20 | 1 | -3/+3 |
| | | | | | | Use level=3 (i.e. log.WARN) for the warnings about failed imports. (Hmm... Why is that code in an "if 1: ..."? What's the else branch for?) | ||||
* | Don't try to build dl on darwin. It doesn't build out of the box, and it | Jack Jansen | 2003-02-18 | 1 | -1/+1 |
| | | | | wouldn't serve a useful purpose anyway. | ||||
* | Re-enable compiling ossaudiodev now that it seems to work again. | Guido van Rossum | 2003-02-13 | 1 | -1/+1 |
| | |||||
* | Add compilation instructions for xxmodule.c. | Guido van Rossum | 2003-02-11 | 1 | -0/+4 |
| | |||||
* | This patch reverts the following: | Jason Tishler | 2003-02-05 | 1 | -5/+6 |
| | | | | | | | | It also prevents building against the real X headers, if installed. After discussions with the Cygwin project lead, I believe that building against the real X headers is OK. Especially, since the psuedo-X headers are *not* installed by the Cygwin Tcl/Tk binary package. | ||||
* | This patch enables Cygwin Python to build _tkinter against Tcl/Tk 8.4. | Jason Tishler | 2003-02-05 | 1 | -12/+4 |
| | | | | | | Note that this patch just reverts the lib_prefix (i.e., "cyg") portion of my Tcl/Tk 8.3 patch. It seems that Cygwin Tcl/Tk is using a more normal file naming convention again. | ||||
* | Get ossaudiodev to compile on freebsd 4.7 | Neal Norwitz | 2003-02-02 | 1 | -1/+2 |
| | |||||
* | Move itertools module from the sandbox and into production. | Raymond Hettinger | 2003-02-01 | 1 | -0/+2 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2003-01-29 | 1 | -30/+30 |
| | |||||
* | Patch #670715: Universal Unicode Codec for POSIX iconv. | Martin v. Löwis | 2003-01-26 | 1 | -0/+18 |
| | |||||
* | Incorporate Expat 1.95.6. | Martin v. Löwis | 2003-01-25 | 1 | -4/+3 |
| | |||||
* | ossaudiodev.c currently gives compilation errors, and Greg doesn't fix | Guido van Rossum | 2003-01-21 | 1 | -2/+3 |
| | | | | it, so disable the build for now. | ||||
* | Add reminder that ossaudiodev can/should also be built on FreeBSD. | Greg Ward | 2003-01-08 | 1 | -0/+2 |
| | |||||
* | Enable building and testing of ossaudiodev for Linux. | Guido van Rossum | 2003-01-08 | 1 | -0/+1 |
| | |||||
* | The bsddb3 library does not build w/ Berkeley DB 3.0. 3.1 is the earliest | Skip Montanaro | 2003-01-04 | 1 | -3/+1 |
| | | | | supported version. | ||||
* | Split OPT make variable into OPT and BASECFLAGS. The latter contains those | Skip Montanaro | 2003-01-01 | 1 | -2/+8 |
| | | | | | | | | | | | compiler flags which are necessary to get a clean compile. The former is for user-specified optimizer, debug, trace fiddling. See patch 640843. Add /sw/lib and /sw/include to setup.py search paths on Darwin to take advantage of fink goodies. Add scriptsinstall target to Makefile to install certain scripts from Tools/scripts directory. | ||||
* | Patch #660485: Cygwin _tkinter Tcl/Tk 8.3 patch | Jason Tishler | 2002-12-31 | 1 | -11/+15 |
| | | | | | | | The attached patch enables Cygwin Python to build cleanly against the latest Cygwin Tcl/Tk which is based on Tcl/Tk 8.3. It also prevents building against the real X headers, if installed. | ||||
* | Search for and use BerkeleyDB 4.1 if it's available. Python's | Barry Warsaw | 2002-12-30 | 1 | -10/+9 |
| | | | | extension module now supports it. | ||||
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -0/+2 |
| | | | | core generator for random.py. | ||||
* | The extension module macfs has been replaced by a pure Python version. | Jack Jansen | 2002-12-19 | 1 | -6/+0 |
| | |||||
* | This is J. Lewis Muir's patch: | Michael W. Hudson | 2002-12-17 | 1 | -1/+42 |
| | | | | | | | | | | | [ 629278 ] install lib-dynload .so files mode 555 fixing [ 583206 ] lib-dynload/*.so wrong permissions [ 425007 ] Python 2.1 installs shared libs with mode 0700 Phew. | ||||
* | Build the datetime module for *n*x. | Guido van Rossum | 2002-12-16 | 1 | -0/+2 |
| | |||||
* | Patch #629126: Detect BLT by also looking for libBLT. | Martin v. Löwis | 2002-12-12 | 1 | -0/+4 |
| | |||||
* | Patch to make _codecs a builtin module. This is necessary since | Marc-André Lemburg | 2002-12-12 | 1 | -2/+0 |
| | | | | | | | Python 2.3 will support source code encodings which rely on the builtin codecs being available to the parser. Remove struct dependency from codecs.py | ||||
* | Correct db3 /opt/sfw library path. Link ndbm with libc only if ndbm.h | Martin v. Löwis | 2002-12-07 | 1 | -10/+10 |
| | | | | | is present and libndbm is not. Add runtime libs to dbm if linked against Berkeley DB. | ||||
* | Search in standard library and include dirs for Sleepycat stuff. | Martin v. Löwis | 2002-12-06 | 1 | -24/+34 |
| | | | | Fixes #590377. | ||||
* | [Patch #641685] setup.py contained code for finding libraries, instead | Andrew M. Kuchling | 2002-11-27 | 1 | -8/+24 |
| | | | | | | | | | | of using the CCompiler.find_library_file() provided by the Distutils. This patch fixes it to use the Distutils method at the cost of some additional glue. (The duplication resulted in the SSL module not being automatically built on Macs; the Distutils knew that shared libraries on OS X have a .dylib extension, but the setup.py code didn't.) | ||||
* | Don't disable building Mac-specific modules for a non-framework build: | Just van Rossum | 2002-11-24 | 1 | -99/+89 |
| | | | | | | whether they crash or not is not a matter of using a framework or not, but whether the code is run from an app bundle or not. And that it _can_ crash (instead of tracing back) is Apple's bug anyway, not ours. | ||||
* | Added the alias manager too. The interface isn't perfect yet: the alias | Jack Jansen | 2002-11-22 | 1 | -0/+2 |
| | | | | | manager doesn't always have the alias as the first argument, so things become functions in stead of methods. | ||||
* | Got angry and added support for pretty much the whole file and folder | Jack Jansen | 2002-11-22 | 1 | -0/+4 |
| | | | | | manager. This should allow us the get rid of most of the FSSpecs, only navigation services remains to be done. | ||||
* | Don't try to use unsupported DB versions. | Martin v. Löwis | 2002-11-19 | 1 | -9/+3 |
| | |||||
* | Import PyBSDDB 3.4.0. Rename historical wrapper to bsddb185. | Martin v. Löwis | 2002-11-19 | 1 | -43/+8 |
| | |||||
* | Look in db4 directories when checking for db4. | Martin v. Löwis | 2002-11-09 | 1 | -4/+4 |
| | |||||
* | Simply delete the fpectl module, instead of leaving it commented out; | Andrew M. Kuchling | 2002-11-08 | 1 | -22/+0 |
| | | | | if people want to compile it, they should edit Modules/Setup, not setup.py | ||||
* | Patch implementing bz2 module. | Gustavo Niemeyer | 2002-11-05 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | * setup.py (PyBuildExt.detect_modules): Included bz2 module detection. * Modules/bz2module.c * Lib/test/test_bz2.py * Doc/lib/libbz2.tex Included files implementing, testing, and documenting bz2 module. * Doc/Makefile.deps * Doc/lib/lib.tex Include references to libbz2.tex. * Misc/NEWS (Library): Mention distutils' c++ linkage patch, and new bz2 module. | ||||
* | [SF bug 620364] | Guido van Rossum | 2002-10-14 | 1 | -0/+3 |
| | | | | | In build_extensions(), don't proceed if srcdir is None. Probably somebody who tried this on Windows. :-) | ||||
* | Disable building of the fpectl module -- it's dangerous or useless | Guido van Rossum | 2002-09-25 | 1 | -14/+15 |
| | | | | except in the hands of experts. Will backport to 2.2.2. | ||||
* | Only build the 'dl' extension when sys.maxint equals 2**31-1. | Guido van Rossum | 2002-09-12 | 1 | -3/+5 |
| | | | | | This module raises "SystemError: module dl requires sizeof(int) == sizeof(long) == sizeof(char*)" when compiled on 64-bit platforms. |