summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* Final patch for issue 9807.Barry Warsaw2010-11-241-309/+285
|
* Regenerated configure and pyconfig.h.in.Mark Dickinson2010-11-201-522/+615
|
* fix output for getaddrinfo bug check #7059Benjamin Peterson2010-11-011-1/+5
|
* add --enable-loadable-sqlite-extensions #10268Benjamin Peterson2010-10-311-1/+18
|
* add no output to with-system-ffi and with-system-expatBenjamin Peterson2010-10-311-270/+254
|
* One more change for issue 9807, by Matthias Klose.Barry Warsaw2010-10-181-2/+2
| | | | | 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-84/+1
|
* First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-161-269/+307
| | | | | | | | | * 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.
* run autoconfBenjamin Peterson2010-10-151-270/+256
|
* Run autoconf to update configure.in -> configure.Barry Warsaw2010-10-141-257/+278
|
* Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-141-2/+2
| | | | 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-18/+18
| | | | | | 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-1/+4
| | | | Akira Kitada.
* Issue #1633863: Don't ignore $CC under AIX.Antoine Pitrou2010-09-211-3/+2
|
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-121-24/+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-2/+14
| | | | be built as a shared library. Patch by Sébastien Sablé.
* Followup to #4026: better patch for flock detection.Antoine Pitrou2010-09-101-36/+26
|
* Issue #4026: Make the fcntl extension build under AIX.Antoine Pitrou2010-09-071-7/+78
| | | | Patch by Sébastien Sablé.
* run autoreconfBenjamin Peterson2010-09-051-286/+267
|
* PEP 3149 is accepted.Barry Warsaw2010-09-031-290/+344
| | | | 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/+50
| | | | other than MSC
* Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch byAntoine Pitrou2010-08-301-1/+5
| | | | Sébastien Sablé.
* Issue #9203: Computed gotos are now enabled by default on supportedAntoine Pitrou2010-08-131-14/+65
| | | | | compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos.
* Remove temporary debugging code.Mark Dickinson2010-07-191-40/+1
|
* Add configure check for a bug with gcc soft floating-point and subnormals, ↵Mark Dickinson2010-07-181-1/+40
| | | | to help debug issue 8265.
* Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when runningJeffrey Yasskin2010-07-091-11/+10
| | | | | | | | | | | | | 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.
* Merged revisions 81004 via svnmerge fromBenjamin Peterson2010-06-271-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81004 | mark.dickinson | 2010-05-08 14:13:21 -0500 (Sat, 08 May 2010) | 1 line Fix configure bug that was misreporting availability of MacOS X 10.5 SDK as available on Linux but not on OS X. ........
* 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-29/+11
| | | | | | | | | | 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-13/+6
| | | | | | | | | | | 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-3/+4
| | | | | | | | | | 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/+6
|
* Make (most of) Python's tests pass under Thread Sanitizer.Jeffrey Yasskin2010-05-031-5/+6
| | | | | | | | | | | | | | | | | | http://code.google.com/p/data-race-test/wiki/ThreadSanitizer is a dynamic data race detector that runs on top of valgrind. With this patch, the binaries at http://code.google.com/p/data-race-test/wiki/ThreadSanitizer#Binaries pass many but not all of the Python tests. All of regrtest still passes outside of tsan. I've implemented part of the C1x atomic types so that we can explicitly mark variables that are used across threads, and get defined behavior as compilers advance. I've added tsan's client header and implementation to the codebase in dynamic_annotations.{h,c} (docs at http://code.google.com/p/data-race-test/wiki/DynamicAnnotations). Unfortunately, I haven't been able to get helgrind and drd to give sensible error messages, even when I use their client annotations, so I'm not supporting them.
* Merged revisions 80665 via svnmerge fromMarc-André Lemburg2010-04-301-3/+8
| | | | | | | | | | | | | | svn+pythonssh://pythondev@svn.python.org/python/trunk ........ r80665 | marc-andre.lemburg | 2010-04-30 19:20:14 +0200 (Fri, 30 Apr 2010) | 7 lines [issue8211] configure: ignore AC_PROG_CC hardcoded CFLAGS Only override the AC_PROG_CC determined CFLAGS if they were set by the user. This restores the default behavior in the common case of not having CFLAGS defined when running configure. ........
* Merged revisions 80647 via svnmerge fromRonald Oussoren2010-04-301-2/+41
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80647 | ronald.oussoren | 2010-04-30 13:20:14 +0200 (Fri, 30 Apr 2010) | 11 lines Fix for issue #3646: with this patch it is possible to do a framework install of Python in your home directory (on OSX): $ configure --enable-framework=${HOME}/Library/Frameworks $ make && make install Without this patch the framework would get installed just fine, but 'make install' would try to install the application bundles and command-line tools outside the user's home, which doesn't work for non-admin users (and is bad form anyway). ........
* Merged revisions 80574 via svnmerge fromJesus Cea2010-04-281-7/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80574 | jesus.cea | 2010-04-28 12:32:30 +0200 (Wed, 28 Apr 2010) | 1 line Issue #3928: Support 'os.mknod()' in Solaris ........
* configure.in: Avoid autoconf warning: Assume C89 semantics thatMatthias Klose2010-04-251-30/+2
| | | | RETSIGTYPE is always void (issue #8510).
* configure.in: convert all obsolete AC_TRY_* macros to AC_*_IFELSE,Matthias Klose2010-04-251-68/+111
| | | | only whitespace changes in generated configure (diff -uEwB).
* configure.in: s/AC_AIX/AC_USE_SYSTEM_EXTENSIONS/Matthias Klose2010-04-251-2/+1
|
* - configure.in: Replace AC_HELP_STRING with AS_HELP_STRINGMatthias Klose2010-04-251-2/+2
|
* - Issue #8510: Update to autoconf2.65.Matthias Klose2010-04-241-18914/+5081
|
* Merged revisions 80443 via svnmerge fromMatthias Klose2010-04-241-18/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80443 | matthias.klose | 2010-04-24 18:38:36 +0200 (Sa, 24 Apr 2010) | 2 lines - Issue #8509: Fix quoting in help strings and code snippets in configure.in. ........
* * Fixes cut&paste error in configureRonald Oussoren2010-04-201-2/+2
| | | | | * Ensure that framework install works given the recent CFLAGS and BASECFLAGS changes
* Merged revisions 80187 via svnmerge fromRonald Oussoren2010-04-181-19/+37
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80187 | ronald.oussoren | 2010-04-18 19:59:37 +0200 (Sun, 18 Apr 2010) | 6 lines Add the OSX universal binary related options to CFLAGS instead of BASECFLAGS. This fixes issue 8366 and is needed due to changes introduced in the fix for issue 1628484. ........
* regen configureBenjamin Peterson2010-04-111-51/+53
|
* build without -fno-strict-aliasing when gcc isn't buggy #3326Benjamin Peterson2010-03-301-12/+57
| | | | Patch from Daniel Stutzbach
* Merged revisions 79392 via svnmerge fromVictor Stinner2010-03-251-0/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79392 | victor.stinner | 2010-03-25 01:21:53 +0100 (jeu., 25 mars 2010) | 3 lines Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compiler optimizations are disabled when --with-pydebug is used. ........
* Merged revisions 79351 via svnmerge fromBenjamin Peterson2010-03-231-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79351 | benjamin.peterson | 2010-03-23 15:58:37 -0500 (Tue, 23 Mar 2010) | 1 line the == test doesn't work on Solaris #8210 ........
* Merged revisions 78962,78964 via svnmerge fromBenjamin Peterson2010-03-141-2/+2
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78962 | benjamin.peterson | 2010-03-14 09:24:31 -0500 (Sun, 14 Mar 2010) | 1 line fix freebsd linking #7705 ........ r78964 | benjamin.peterson | 2010-03-14 10:06:14 -0500 (Sun, 14 Mar 2010) | 1 line fix quotes ........