summaryrefslogtreecommitdiffstats
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Build _ctypes after the other extensions. Its build process dependsChristian Heimes2008-01-181-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 Chang2007-10-281-1/+1
|
* remove another sleepycat referenceGregory P. Smith2007-10-091-1/+1
|
* Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C APIGregory P. Smith2007-10-091-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. Smith2007-10-061-4/+12
|
* Don't allow BerkeleyDB 4.6.x as the current 4.6.19 release is proneGregory P. Smith2007-09-101-2/+4
| | | | to lockups. We'll reenable it once a good 4.6.x release exists.
* If this is correct for py3k branch and it's already in the release25-maintSkip Montanaro2007-09-061-3/+0
| | | | branch, seems like it ought to be on the trunk as well.
* - Added support for linking the bsddb module against BerkeleyDB 4.6.x.Matthias Klose2007-09-031-3/+3
|
* keep setup.py from listing unneeded hash modules (_md5, _sha*) asGregory P. Smith2007-08-261-4/+11
| | | | | | | missing when they were not built because _hashlib with openssl provided their functionality instead. don't build bsddb185 if bsddb was built.
* Bug #1765375: fix stripping of unwanted LDFLAGS.Georg Brandl2007-08-241-1/+2
|
* When setup.py fails to find the necessary bits to build some modules, have itJeffrey Yasskin2007-08-221-1/+4
| | | | print a slightly more informative message.
* Remove the rgbimg module. It has been deprecated since Python 2.5.Brett Cannon2007-05-201-3/+1
|
* Fix cmp vs. key argument for list.sort.Georg Brandl2007-03-061-1/+1
|
* patch 1673619 - identify extension modules which cannot be builtSkip Montanaro2007-03-061-4/+109
|
* Teach setup.py how to find Berkeley DB on Macs using MacPorts.Skip Montanaro2007-03-041-8/+10
|
* Prepare collections module for pure python code entries.Raymond Hettinger2007-02-281-1/+1
|
* Ignore directory time stamps when consideringMartin v. Löwis2007-02-141-1/+2
| | | | whether to rerun libffi configure.
* Support linking of the bsddb module against BerkeleyDB 4.5.xGregory P. Smith2007-01-051-3/+3
| | | | (will backport to 2.5)
* Check db_setup_debug for a few print statements; change sqlite_setup_debug ↵Andrew M. Kuchling2006-10-271-5/+8
| | | | to False
* Add some commentary on -mimpure-text.Martin v. Löwis2006-08-091-0/+8
|
* [Patch #1464056] Ensure that we use the panelw library when linking with ↵Andrew M. Kuchling2006-08-061-2/+6
| | | | | | ncursesw. Once I see how the buildbots react, I'll backport this to 2.4.
* Fix #1530448 - fix ctypes build failure on solaris 10.Thomas Heller2006-08-041-0/+5
| | | | The '-mimpure-text' linker flag is required when linking _ctypes.so.
* Whitespace normalization.Tim Peters2006-06-301-1/+1
|
* Use staticly build copies of zlib and bzip2 to build the OSX installer, thatRonald Oussoren2006-06-271-2/+30
| | | | | | | | | way the resulting binaries have a better change of running on 10.3. This patch also updates the search logic for sleepycat db3/4, without this patch you cannot use a sleepycat build with a non-standard prefix; with this you can (at least on OSX) if you add the prefix to CPPFLAGS/LDFLAGS at configure-time. This change is needed to build the binary installer for OSX.
* add depends = ['md5.h'] to the _md5 module extension for correctness sake.Gregory P. Smith2006-06-051-1/+3
|
* Drop Mac wrappers for the WASTE library.Ronald Oussoren2006-06-041-23/+0
|
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-2/+2
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* - Search the sqlite specific search directoriesRonald Oussoren2006-05-261-1/+45
| | | | | | | | | | | | | after the normal include directories when looking for the version of sqlite to use. - On OSX: * Extract additional include and link directories from the CFLAGS and LDFLAGS, if the user has bothered to specify them we might as wel use them. * Add '-Wl,-search_paths_first' to the extra_link_args for readline and sqlite. This makes it possible to use a static library to override the system provided dynamic library.
* patch #1493701: performance enhancements for struct moduleBob Ippolito2006-05-231-1/+1
|
* revert #1493701Bob Ippolito2006-05-231-1/+1
|
* Patch #1493701: performance enhancements for struct module.Bob Ippolito2006-05-231-1/+1
|
* Patch 1471883: --enable-universalsdk on Mac OS XRonald Oussoren2006-04-291-12/+3
|
* Rerun the libffi configuration if any of the files used for thatThomas Heller2006-04-271-1/+6
| | | | are newer then fficonfig.py.
* Updated the sqlite3 module to the external pysqlite 2.2.2 version.Gerhard Häring2006-04-231-9/+1
|
* raise the minimum supported BerkeleyDB version to 3.3 and add notes toGregory P. Smith2006-04-131-6/+5
| | | | news about this and a couple other recent fixes.
* Patch #1464444: Add --with-system-ffi.Martin v. Löwis2006-04-111-37/+67
|
* Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c)Anthony Baxter2006-04-091-1/+1
| | | | | | to load extension modules and now provides the dl module. As a result, sys.setdlopenflags() now works correctly on these systems. (SF patch #1454844)
* Don't try to build ctypes when configuration of libffi fails.Thomas Heller2006-04-071-2/+4
|
* Configure Modules/_ctypes/libffi just before building the _ctypes extension.Thomas Heller2006-04-071-2/+13
| | | | This avoids configuring it when it is not build by setup.py.
* upgrade to final version of pysqlite 2.2.0Anthony Baxter2006-04-051-4/+3
|
* whitespace normalisationAnthony Baxter2006-04-051-6/+6
|
* Update to pysqlite 2.2.0Anthony Baxter2006-04-041-1/+1
|
* - Patch #360466: Replace the MD5 implementation from RSA Data Security IncMatthias Klose2006-04-031-2/+2
| | | | with the implementation from http://sourceforge.net/projects/libmd5-rfc/.
* Remove some duplicated code for handling Mac modules. No functional change ↵Neal Norwitz2006-04-031-109/+63
| | | | (intended). Also stoped setting srcdir twice.
* cleaned up setup.py code for sqlite3, based on patch from Gerhard Haering.Anthony Baxter2006-04-031-30/+22
|
* backport r243 from the pysqlite2 svn repository - lowers the required versionAnthony Baxter2006-04-011-4/+20
| | | | | | of SQLite3 from 3.2.2 to 3.0.8, by providing an alternative to sqlite3_transfer_bindings. setup.py also handles the common (in debian and ubuntu, at least) case of a buggy sqlite3.h SQLITE_VERSION_NUMBER.
* merged the sqlite-integration branch.Anthony Baxter2006-04-011-0/+75
| | | | | | | This is based on pysqlite2.1.3, and provides a DB-API interface in the standard library. You'll need sqlite 3.2.2 or later to build this - if you have an earlier version, the C extension module will not be built.
* Add '-Wno-deprecated-warnings' to the compile flags for the Carbon extensionsRonald Oussoren2006-03-301-30/+77
| | | | | | on OSX 10.4 or later. This stops the compiler for complaining about calls to deprecated functions in these extensions, they are supposed to wrap as much of Carbon as possible.
* Find a source file in srcdir to allow to build outside of srcdir.Hye-Shik Chang2006-03-271-1/+1
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-161-2/+0
|