Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #3585: Add pkg-config support. | Antoine Pitrou | 2009-05-24 | 1 | -12/+48 |
| | | | | | It creates a python-2.7.pc file and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy. | ||||
* | Backport r71704 (add configure check for C99 round function) to trunk. | Mark Dickinson | 2009-04-18 | 1 | -0/+3 |
| | |||||
* | issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵ | Jesse Noller | 2009-04-02 | 1 | -0/+15 |
| | | | | Lowis for help | ||||
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 1 | -0/+29 |
| | | | | Backport of r70459. | ||||
* | isinf and isnan are macros, not functions; fix configure script | Mark Dickinson | 2009-01-04 | 1 | -6/+12 |
| | | | | | to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these. (See discussion in issue #4506) | ||||
* | Add autoconf test to detect x87-style double rounding, as described in | Mark Dickinson | 2009-01-04 | 1 | -0/+3 |
| | | | | | | | issue #2937. This information can be helpful for diagnosing platform- specific problems in math and cmath. The result of the test also serves as a fairly reliable indicator of whether the x87 floating-point instructions (as opposed to SSE2) are in use on Intel x86/x86_64 systems. | ||||
* | Bump version to 2.7. Regenerate. | Martin v. Löwis | 2008-10-03 | 1 | -1/+1 |
| | |||||
* | - Issue #1204: The configure script now tests for additional libraries | Gregory P. Smith | 2008-09-07 | 1 | -3/+0 |
| | | | | | | that may be required when linking against readline. This fixes issues with x86_64 builds on some platforms (at least a few Linux flavors as well as OpenBSD/amd64). | ||||
* | Fix typo in configure.in, and propagate configure.in changes from r64002 | Mark Dickinson | 2008-06-27 | 1 | -0/+6 |
| | | | | to configure and pyconfig.h.in. | ||||
* | Fix build issue on OSX 10.4 | Ronald Oussoren | 2008-06-06 | 1 | -3/+3 |
| | |||||
* | MacOS X: Enable 4-way universal builds | Ronald Oussoren | 2008-06-05 | 1 | -15/+8 |
| | | | | | | | | | | | | | | | | | | 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. | ||||
* | Patch #1722225: Support QNX 6. | Martin v. Löwis | 2008-05-23 | 1 | -0/+3 |
| | |||||
* | test_math and test_cmath are failing on the FreeBSD 6.2 trunk buildbot, | Mark Dickinson | 2008-04-21 | 1 | -0/+3 |
| | | | | | | | | apparently because tanh(-0.) loses the sign of zero on that platform. If true, this is a bug in FreeBSD. Added a configure test to verify this. I still need to figure out how best to deal with this failure. | ||||
* | Fix compiler warning about finite() missing on Solaris. | Neal Norwitz | 2008-03-28 | 1 | -0/+3 |
| | |||||
* | Patch #2240: Implement signal.setitimer and signal.getitimer. | Martin v. Löwis | 2008-03-24 | 1 | -0/+6 |
| | |||||
* | Applied patch #1657 epoll and kqueue wrappers for the select module | Christian Heimes | 2008-03-21 | 1 | -0/+12 |
| | | | | | The patch adds wrappers for the Linux epoll syscalls and the BSD kqueue syscalls. Thanks to Thomas Herve and the Twisted people for their support and help. TODO: Finish documentation documentation | ||||
* | Remove our implementation of memmove() and strerror(); both are in the C89 | Brett Cannon | 2008-03-18 | 1 | -3/+0 |
| | | | | standard library. | ||||
* | Fixed bug #1983: Return from fork() is pid_t, not int | Christian Heimes | 2008-01-31 | 1 | -0/+3 |
| | |||||
* | Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ↵ | Christian Heimes | 2008-01-20 | 1 | -3/+18 |
| | | | | function is not called isfinite() but finite(). Sorry, my fault. :) | ||||
* | Issue #1646: Make socket support TIPC. The socket module now has support | Christian Heimes | 2008-01-07 | 1 | -1/+3 |
| | | | | | for TIPC under Linux, see http://tipc.sf.net/ for more information. Thanks to Alberto Bertogli for the patch | ||||
* | Applied patch #1635: Float patch for inf and nan on Windows (and other ↵ | Christian Heimes | 2007-12-18 | 1 | -0/+13 |
| | | | | | | platforms). The patch unifies float("inf") and repr(float("inf")) on all platforms. | ||||
* | Fix for feature request #1528 Add os.fchmod | Christian Heimes | 2007-11-30 | 1 | -0/+9 |
| | | | | | Georg Brandl has added fchmod() and fchown(). I've contributed lchown but I'm not able to test it on Linux. However it should be available on Mac and some other flavors of Unix. I've made a quick test of fchmod() and fchown() on my system. They are working as expected. | ||||
* | Patch #1388440: Add set_completion_display_matches_hook and | Martin v. Löwis | 2007-09-04 | 1 | -0/+3 |
| | | | | get_completion_type to readline. | ||||
* | Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+. | Martin v. Löwis | 2007-07-31 | 1 | -14/+21 |
| | |||||
* | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 1 | -0/+6 |
| | | | | functions on platforms where the underlying system calls are available. | ||||
* | Patch #1610575: Add support for _Bool to struct. | Martin v. Löwis | 2007-01-21 | 1 | -0/+6 |
| | |||||
* | Get DBL_MAX from float.h not values.h. Will backport. | Martin v. Löwis | 2006-10-27 | 1 | -3/+0 |
| | |||||
* | Check for values.h. Will backport. | Martin v. Löwis | 2006-10-27 | 1 | -0/+3 |
| | |||||
* | Add check for the PyArg_ParseTuple format, and declare | Martin v. Löwis | 2006-10-19 | 1 | -0/+3 |
| | | | | it if it is supported. | ||||
* | Fix test for uintptr_t. Fixes #1568842. | Martin v. Löwis | 2006-10-02 | 1 | -1/+1 |
| | | | | Will backport. | ||||
* | Drop usage of test -e in configure as it is not portable. | Martin v. Löwis | 2006-07-30 | 1 | -9/+9 |
| | | | | | | Fixes #1439538 Will backport to 2.4 Also regenerate pyconfig.h.in. | ||||
* | Patch #1506645: add Python wrappers for the curses functions | Walter Dörwald | 2006-06-19 | 1 | -0/+9 |
| | | | | | is_term_resized, resize_term and resizeterm. This uses three separate configure checks (one for each function). | ||||
* | Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy | Neal Norwitz | 2006-06-12 | 1 | -0/+3 |
| | | | | | copy is only in newer versions of zlib. This should allow zlibmodule to work with older versions like the Tru64 buildbot. | ||||
* | Patch #1495999: Part two of Windows CE changes. | Martin v. Löwis | 2006-06-10 | 1 | -0/+18 |
| | | | | | | - update header checks, using autoconf - provide dummies for getenv, environ, and GetVersion - adjust MSC_VER check in socketmodule.c | ||||
* | Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64. | Neal Norwitz | 2006-05-19 | 1 | -0/+3 |
| | | | | I suppose this could be backported if anyone cares. | ||||
* | - Test for sys/statvfs.h before including it, as statvfs is present | Martin v. Löwis | 2006-05-16 | 1 | -0/+3 |
| | | | | | on some OSX installation, but its header file is not. Will backport to 2.4 | ||||
* | Detect if %zd is supported by printf() during configure and sets | Brett Cannon | 2006-05-11 | 1 | -0/+3 |
| | | | | | | PY_FORMAT_SIZE_T appropriately. Removes warnings on OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is needed. | ||||
* | Patch 1471883: --enable-universalsdk on Mac OS X | Ronald Oussoren | 2006-04-29 | 1 | -2/+15 |
| | |||||
* | Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. ↵ | Neal Norwitz | 2006-03-20 | 1 | -0/+6 |
| | | | | | | | | Schroeder. This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase). | ||||
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -0/+6 |
| | |||||
* | Patch #1103116: AF_NETLINK sockets basic support. | Martin v. Löwis | 2006-01-14 | 1 | -0/+6 |
| | |||||
* | If there is no libtermcap all the readline tests failed. | Neal Norwitz | 2006-01-07 | 1 | -0/+6 |
| | | | | | | | | | This inappropriately disabled some capabilities which exist. Now test for readline in -lreadline, if not found there, try it in -ltermcap only if not in -lreadline. If both libraries are required, there will need to be more work, but I'm not sure under what conditions both libraries would be required. | ||||
* | Revert r41662 and the part of 41552 that originally caused the problem | Neal Norwitz | 2005-12-15 | 1 | -3/+0 |
| | | | | | (calling ftell(stdin) doesn't seem defined). So we won't test errors from ftell unless we can do it portably. | ||||
* | Add a workaround for file.ftell() to raise IOError for ttys. | Hye-Shik Chang | 2005-12-13 | 1 | -0/+3 |
| | | | | | ftell(3) on BSD doesn't set errno even for ttys and returns useless values. | ||||
* | Patch #1180695: Implement nanosecond stat resolution on FreeBSD, | Martin v. Löwis | 2005-08-09 | 1 | -0/+9 |
| | | | | add st_gen, st_birthtime. | ||||
* | Patch #1212117: Add optional attribute st_flags to os.stat_result | Hye-Shik Chang | 2005-06-02 | 1 | -0/+3 |
| | | | | | when the member is available on the platform. (Contributed by Diego Petteno) | ||||
* | Patch #579435: Shadow Password Support Module | Martin v. Löwis | 2005-01-23 | 1 | -0/+9 |
| | |||||
* | Patch 977343, Solaris likes sys/loadavg.h. Added support for sys/loadavg.h | Anthony Baxter | 2004-10-13 | 1 | -0/+3 |
| | | | | detection to configure &c. | ||||
* | Patch #1012280: Include curses.h for term.h check. Fixes #933795. | Martin v. Löwis | 2004-09-18 | 1 | -0/+3 |
| | | | | Will backport to 2.3. | ||||
* | Define _BSD_TYPES. Fixes #1005308. Backported to 2.3. | Martin v. Löwis | 2004-08-12 | 1 | -3/+6 |
| |