summaryrefslogtreecommitdiffstats
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall.Antoine Pitrou2011-02-281-1/+1
|
* Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall.Antoine Pitrou2011-02-251-2/+2
|
* Issue #4761: Add the *at() family of functions (openat(), etc.) to the posixAntoine Pitrou2011-02-251-6/+7
| | | | module. Patch by Ross Lagerwall.
* Issue 10784: adds os.getpriority() and os.setpriority() functions.Giampaolo Rodolà2011-02-251-1/+1
|
* Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall)Giampaolo Rodolà2011-02-251-5/+6
|
* Remove unused m4 define.Georg Brandl2011-02-251-7/+0
|
* Bump trunk to 3.3 alpha 0.Georg Brandl2011-02-201-1/+1
|
* #11184: Fix large file support on AIX.Georg Brandl2011-02-191-0/+6
|
* #730467: Another small AIX fix.Georg Brandl2011-02-151-1/+1
|
* #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, ↵Georg Brandl2011-02-151-1/+1
| | | | review by Antoine Pitrou.
* Issue #11121: Fix building with --enable-shared.Martin v. Löwis2011-02-051-3/+2
|
* Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep inAntoine Pitrou2011-01-031-1/+1
| | | | the configure script but use $GREP instead. Patch by Fabian Groffen.
* Fix bad quoting in r87639. Caught by Arfrever.Antoine Pitrou2011-01-021-2/+2
|
* Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSDAntoine Pitrou2011-01-021-2/+2
| | | | and DragonFly BSD. Patch by Nicolas Joly.
* Build and install libpython3.so.Martin v. Löwis2010-12-301-0/+10
|
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-131-1/+1
| | | | | the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.
* Final patch for issue 9807.Barry Warsaw2010-11-241-1/+1
|
* Add configure-time test for log1p disrespecting zero sign.Mark Dickinson2010-11-201-3/+32
|
* fix output for getaddrinfo bug check #7059Benjamin Peterson2010-11-011-0/+3
|
* add --enable-loadable-sqlite-extensions #10268Benjamin Peterson2010-10-311-0/+9
|
* add no output to with-system-ffi and with-system-expatBenjamin Peterson2010-10-311-2/+6
|
* One more change for issue 9807, by Matthias Klose.Barry Warsaw2010-10-181-1/+1
| | | | | This adds $ABIFLAGS to the static library, since it should match the shared library name. Also, include the abiflags in python-config --libs.
* Drop OPT:Olimit, as it confuses SunPRO (and other compilers).Martin v. Löwis2010-10-171-45/+0
|
* First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-161-20/+32
| | | | | | | | | * Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
* #9862: On AIX PIPE_BUF is broken. Make it 512.R. David Murray2010-10-151-0/+4
| | | | Patch by Sébastien Sablé.
* - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.Matthias Klose2010-10-141-1/+2
|
* Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-141-1/+1
| | | | where supported by the system. Patch by Nikita Vetoshkin.
* Followup to #9437: since LDFLAGS is now appended to LDSHARED in the Makefile,Antoine Pitrou2010-10-131-17/+17
| | | | | | don't do in configure as well. Hopefully this will solve a Makefile parsing issue on the FreeBSD buildbots.
* Some platforms provide uintptr_t in inttypes.h. Patch byAntoine Pitrou2010-10-101-0/+3
| | | | Akira Kitada.
* Issue #1633863: Don't ignore $CC under AIX.Antoine Pitrou2010-09-211-1/+1
|
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-121-15/+0
| | | | | | | | The internal unicode database is now always used. (after 5 years: see http://mail.python.org/pipermail/python-dev/2004-December/050193.html )
* Issue #941346: Improve the build process under AIX and allow Python toAntoine Pitrou2010-09-101-1/+6
| | | | be built as a shared library. Patch by Sébastien Sablé.
* Followup to #4026: better patch for flock detection.Antoine Pitrou2010-09-101-20/+16
|
* Issue #4026: Make the fcntl extension build under AIX.Antoine Pitrou2010-09-071-2/+16
| | | | Patch by Sébastien Sablé.
* run autoreconfBenjamin Peterson2010-09-051-1/+1
|
* Fix typos and use tabs consistently.Georg Brandl2010-09-031-11/+11
|
* PEP 3149 is accepted.Barry Warsaw2010-09-031-32/+63
| | | | http://mail.python.org/pipermail/python-dev/2010-September/103408.html
* Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers ↵Daniel Stutzbach2010-08-311-0/+7
| | | | other than MSC
* Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch byAntoine Pitrou2010-08-301-0/+3
| | | | Sébastien Sablé.
* Issue #9203: Computed gotos are now enabled by default on supportedAntoine Pitrou2010-08-131-6/+36
| | | | | compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos.
* #8119: fix copy-paste error.Georg Brandl2010-08-021-1/+1
|
* Remove temporary debugging code.Mark Dickinson2010-07-191-20/+0
|
* Add configure check for a bug with gcc soft floating-point and subnormals, ↵Mark Dickinson2010-07-181-0/+20
| | | | to help debug issue 8265.
* Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when runningJeffrey Yasskin2010-07-091-7/+6
| | | | | | | | | | | | | configure to append to Python's default values for those variables, and similarly allow users to set $XXFLAGS on the make command line to append to the values set by configure. In the makefile, this renames the variables that used to be $XXFLAGS to $PY_XXFLAGS, and renames the old $PY_CFLAGS to $PY_CORE_CFLAGS. To compensate, sysconfig now aliases $XXFLAGS=$PY_XXFLAGS so that scripts using it keep working. I see that as the right interface, not a backward-compatibility hack, since these are logically the $XXFLAGS variables; we just use a different name in the makefile to deal with make's semantics.
* Revert r82089. Commit was intended for a branch.Jean-Paul Calderone2010-06-191-1/+1
|
* merge forward from the python 2.x branchJean-Paul Calderone2010-06-191-1/+1
|
* Merged revisions 81582 via svnmerge fromMartin v. Löwis2010-05-281-27/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81582 | martin.v.loewis | 2010-05-28 17:28:47 +0200 (Fr, 28 Mai 2010) | 2 lines Issue #1759169: Drop _XOPEN_SOURCE on Solaris. ........
* Recorded merge of revisions 81077 via svnmerge fromMark Dickinson2010-05-111-12/+5
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81077 | mark.dickinson | 2010-05-11 09:55:06 +0100 (Tue, 11 May 2010) | 3 lines Issue #8510: Remove nested 'main' functions (causing failure) in 3 configure tests; remove some unnecessary '#include "confdefs.h"' lines. Thanks Roumen Petrov. ........
* Merged revisions 80832 via svnmerge fromMark Dickinson2010-05-051-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80832 | mark.dickinson | 2010-05-05 23:23:58 +0100 (Wed, 05 May 2010) | 2 lines Issue #8625: Turn off gcc optimization in debug builds. ........
* Deprecate OSF* supportJesus Cea2010-05-031-0/+7
|