Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MacOSX: detect the architectures supported by | Ronald Oussoren | 2009-09-15 | 1 | -13/+11 |
| | | | | | | | | | Tk.framework and build _tkinter only for those architectures. This replaces the hardcoded solution that is no longer valid now that 64-bit capable versions of Tk are available on OSX. | ||||
* | Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6. | Guilherme Polo | 2009-08-16 | 1 | -2/+2 |
| | |||||
* | Fixed #6377: distutils compiler switch ignored (and added a deprecation ↵ | Tarek Ziadé | 2009-07-06 | 1 | -45/+49 |
| | | | | warning if compiler is not used as supposed = a string option) | ||||
* | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 1 | -4/+5 |
| | |||||
* | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 1 | -4/+5 |
| | | | | the order that backends for the dbm extension are checked. | ||||
* | - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify | Matthias Klose | 2009-04-29 | 1 | -33/+62 |
| | | | | the order that backends for the dbm extension are checked. | ||||
* | issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵ | Jesse Noller | 2009-04-02 | 1 | -35/+7 |
| | | | | Lowis for help | ||||
* | Apply patch for netbsd multiprocessing support | Jesse Noller | 2009-03-31 | 1 | -0/+9 |
| | |||||
* | Change framework search order when looking for Tcl/Tk on OSX. | Ronald Oussoren | 2009-03-04 | 1 | -1/+1 |
| | | | | | | | This is needed because the system linker looks in /Library/Framework before it looks in /System/Library frameworks. Without this patch _tkinter will be unusable when it is compiled on a system that has Tk 8.5 installed in /Library/Frameworks (and the Apple 8.4 install in /System/Library/Frameworks) | ||||
* | _testcapi depends on testcapi_long.h | Mark Dickinson | 2009-02-10 | 1 | -1/+2 |
| | | | | Thanks Lisandro Dalcin. | ||||
* | Distutils apparently requires an absolute path so provide one. | Neil Schemenauer | 2009-02-06 | 1 | -1/+1 |
| | |||||
* | Oops, Mac build needs the 'incdirlist' variable so restore it. | Neil Schemenauer | 2009-02-05 | 1 | -1/+5 |
| | |||||
* | Make setup.py work when building in a directory other than the | Neil Schemenauer | 2009-02-05 | 1 | -24/+8 |
| | | | | | source directory. Mainly use 'srcdir' rather than os.getcwd() or '.'. | ||||
* | Issue 3807: multiprocessing fails to compile under --without-threads | Jesse Noller | 2009-01-23 | 1 | -3/+7 |
| | |||||
* | #4731: clarify message about missing module prerequisites. | Georg Brandl | 2008-12-28 | 1 | -1/+2 |
| | |||||
* | muffed the default case | Skip Montanaro | 2008-12-07 | 1 | -3/+2 |
| | |||||
* | issue 4483 - dbm build failures on systems with gdbm_compat lib. | Skip Montanaro | 2008-12-06 | 1 | -2/+14 |
| | |||||
* | Issue #4204: Fixed module build errors on FreeBSD 4. | Martin v. Löwis | 2008-11-04 | 1 | -1/+1 |
| | |||||
* | Pay attention to -R entries in LDFLAGS. | Skip Montanaro | 2008-10-07 | 1 | -1/+2 |
| | |||||
* | Issue #4014: Don't claim that Python has an Alpha release status, in addition | Martin v. Löwis | 2008-10-06 | 1 | -1/+0 |
| | | | | to claiming it is Mature. | ||||
* | Issue #1706863: Fixed "'NoneType' object has no attribute 'rfind'" error ↵ | Hirokazu Yamamoto | 2008-10-03 | 1 | -1/+2 |
| | | | | when sqlite libfile not found. | ||||
* | issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵ | Jesse Noller | 2008-09-30 | 1 | -0/+8 |
| | | | | Coghlan, Damien Miller | ||||
* | Give information for compililation of _multiprocessing.SemLock on FreeBSD: | Hye-Shik Chang | 2008-06-28 | 1 | -0/+11 |
| | | | | | | | | FreeBSD's P1003.1b semaphore support is highly experimental and it's disabled by default. Even if a user loads the experimental kernel module manually, _multiprocessing doesn't work correctly due to several known incompatibilities around sem_unlink and sem_getvalue, yet. | ||||
* | add the multiprocessing package to fulfill PEP 371 | Benjamin Peterson | 2008-06-11 | 1 | -0/+52 |
| | |||||
* | MacOS X: Enable 4-way universal builds | Ronald Oussoren | 2008-06-05 | 1 | -3/+50 |
| | | | | | | | | | | | | | | | | | | This patch adds a new configure argument on OSX: --with-universal-archs=[32-bit|64-bit|all] When used with the --enable-universalsdk option this controls which CPU architectures are includes in the framework. The default is 32-bit, meaning i386 and ppc. The most useful alternative is 'all', which includes all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64). This includes limited support for the Carbon bindings in 64-bit mode as well, limited because (a) I haven't done extensive testing and (b) a large portion of the Carbon API's aren't available in 64-bit mode anyway. I've also duplicated a feature of Apple's build of python: setting the environment variable 'ARCHFLAGS' controls the '-arch' flags used for building extensions using distutils. | ||||
* | Fix misspelled sys.platform name and misspelled filename. | Thomas Heller | 2008-06-02 | 1 | -1/+1 |
| | |||||
* | Turn off debugging output for building bsddb. | Brett Cannon | 2008-05-29 | 1 | -2/+3 |
| | |||||
* | Disable the use of BerkeleyDB 4.6 on platforms that appear to have | Gregory P. Smith | 2008-05-27 | 1 | -5/+35 |
| | | | | issues with it. | ||||
* | Allow BerlekeyDB up through 4.7. I doubt any of our unixy buildbots even have | Gregory P. Smith | 2008-05-26 | 1 | -4/+1 |
| | | | | that installed yet but the module code supports it. | ||||
* | print out information about which BerkeleyDB library was found by | Gregory P. Smith | 2008-05-25 | 1 | -3/+2 |
| | | | | setup.py to use to build the bsddb module. | ||||
* | Patch #1722225: Support QNX 6. | Martin v. Löwis | 2008-05-23 | 1 | -1/+1 |
| | |||||
* | On HPUX, -fPIC must be used for linking. _ctypes now builds on HP-UX | Thomas Heller | 2008-05-20 | 1 | -0/+3 |
| | | | | | | | IA64 and PA machines. The ctypes unittests work fine on the IA64, but dump core in test_qsort on the PA. | ||||
* | Backport fast alternate io.BytesIO implementation. | Alexandre Vassalotti | 2008-05-09 | 1 | -0/+2 |
| | | | | | Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956. | ||||
* | Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob | Brett Cannon | 2008-05-05 | 1 | -0/+2 |
| | | | | | | Ippolito. Closes issue #2750. | ||||
* | Fix test_distutils to not fail when running 'make test' from a Python build | Thomas Wouters | 2008-04-05 | 1 | -0/+2 |
| | | | | | | | | | directory that is not the source directory (ie, one created using '/path/to/source/configure'.) Leaves this test very slightly degraded in that particular case, compared to the build-in-sourcedir case, but that case isn't a particularly strong test either: neither test the actual path that will be used after installing. There isn't a particularly good way to test this, and a poor test beats a failing test. | ||||
* | Install 2to3 script. | Martin v. Löwis | 2008-03-24 | 1 | -0/+1 |
| | |||||
* | Have the binascii module use zlib's optimized crc32() function when available | Gregory P. Smith | 2008-03-24 | 1 | -3/+17 |
| | | | | | to reduce our code size (1k data table and tiny bit of code). It falls back to its own without zlib. | ||||
* | Move itertools before future_builtins since the latter depends on the former. | Neal Norwitz | 2008-03-23 | 1 | -2/+2 |
| | | | | | From a clean build importing future_builtins would fail since itertools wasn't built yet. | ||||
* | Merged changes from libffi3-branch. | Thomas Heller | 2008-03-04 | 1 | -0/+35 |
| | | | | | | | | | The bundled libffi copy is now in sync with the recently released libffi3.0.4 version, apart from some small changes to Modules/_ctypes/libffi/configure.ac. I gave up on using libffi3 files on os x. Instead, static configuration with files from pyobjc is used. | ||||
* | Added future_builtins, which contains PEP 3127 compatible versions of hex() ↵ | Eric Smith | 2008-02-23 | 1 | -0/+3 |
| | | | | and oct(). | ||||
* | remove a repeated occurance of a hardcoded berkeleydb library version number | Gregory P. Smith | 2008-02-03 | 1 | -2/+2 |
| | |||||
* | Directories from CPPFLAGS and LDFLAGS were being added in the reverse order for | Brett Cannon | 2008-02-03 | 1 | -1/+1 |
| | | | | searches as to how they were listed in the environment variable. | ||||
* | Disable use of BerkeleyDB 4.6.x to see what the odd platform buildbots | Gregory P. Smith | 2008-01-28 | 1 | -1/+4 |
| | | | | | think. In particular, neal norwitz has traced an Ubuntu sparc64 crash to the Lib/test/bsddb/test_basics.py test when opening a db with DB_THREAD. | ||||
* | Added the Python core headers Include/*.h and pyconfig.h as dependencies for ↵ | Christian Heimes | 2008-01-25 | 1 | -0/+9 |
| | | | | | | the extensions in Modules/ It forces a rebuild of all extensions when a header files has been modified | ||||
* | Backport of several functions from Python 3.0 to 2.6 including ↵ | Christian Heimes | 2008-01-25 | 1 | -0/+2 |
| | | | | | | | PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. First chapter of the Python 3.0 io framework back port: _fileio The next step depends on a working bytearray type which itself depends on a backport of the nwe buffer API. | ||||
* | Build _ctypes after the other extensions. Its build process depends | Christian Heimes | 2008-01-18 | 1 | -2/+8 |
| | | | | on the _weakref extension (and maybe other modules, too) | ||||
* | Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) | Hye-Shik Chang | 2007-10-28 | 1 | -1/+1 |
| | |||||
* | remove another sleepycat reference | Gregory P. Smith | 2007-10-09 | 1 | -1/+1 |
| | |||||
* | Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API | Gregory P. Smith | 2007-10-09 | 1 | -0/+1 |
| | | | | | | | | | | | object available as bsddb.db.api. This is based on the patch submitted by Duncan Grisby here: http://sourceforge.net/tracker/index.php?func=detail&aid=1551895&group_id=13900&atid=313900 See this thread for additional info: http://sourceforge.net/mailarchive/forum.php?thread_name=E1GAVDK-0002rk-Iw%40apasphere.com&forum_name=pybsddb-users It also cleans up the code a little by removing some ifdef/endifs for python prior to 2.1 and for unsupported Berkeley DB <= 3.2. | ||||
* | Allows BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module. | Gregory P. Smith | 2007-10-06 | 1 | -4/+12 |
| |