summaryrefslogtreecommitdiffstats
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* - Issue #8509: Fix quoting in help strings and code snippets in configure.in.Matthias Klose2010-04-241-70/+70
|
* Add the OSX universal binary related optionsRonald Oussoren2010-04-181-5/+6
| | | | | | | to CFLAGS instead of BASECFLAGS. This fixes issue 8366 and is needed due to changes introduced in the fix for issue 1628484.
* This check-in fixes two problems:Ronald Oussoren2010-04-081-30/+1
| | | | | | | | 1) A non-critical off-by-one error in pythonw 2) A problem in the configure script that caused builds with '--enable-framework --enable-universalsdk=/' to fail on OSX 10.6.
* Issue #1222585: Added LDCXXSHARED for C++ supportTarek Ziadé2010-04-031-15/+50
|
* Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compilerVictor Stinner2010-03-251-0/+2
| | | | optimizations are disabled when --with-pydebug is used.
* the == test doesn't work on Solaris #8210Benjamin Peterson2010-03-231-1/+1
|
* fix quotesBenjamin Peterson2010-03-141-1/+1
|
* fix freebsd linking #7705Benjamin Peterson2010-03-141-1/+1
|
* fix ugly configure output (follow up to #6943)Benjamin Peterson2010-03-091-2/+3
|
* handle an empty OPT variable correctly #8100Benjamin Peterson2010-03-091-1/+1
|
* Show an error when the value passed to --enable-unicode is not ucs2 or ucs4 ↵Ezio Melotti2010-02-271-0/+1
| | | | (lowercase).
* Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9.Martin v. Löwis2010-02-151-2/+4
|
* Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4.Martin v. Löwis2010-02-151-0/+6
|
* Finish fix for issue 7715, after explicit search for calls to `arch`Ronald Oussoren2010-02-111-4/+4
|
* Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universalRonald Oussoren2010-02-111-1/+1
| | | | build (all other definition where correct).
* Explicitly use /usr/bin/arch on OSX, fixes issue 7715Ronald Oussoren2010-01-171-3/+3
|
* This patch ensures that the configure-script mentions checking for ↵Ronald Oussoren2010-01-171-0/+16
| | | | | | | | | | | --enable-universalsdk and that it doesn't default to the 10.4u SDK when that SDK does not exist. (This affects OSX) This patch should fix most of issue 4834, although I haven't gotten enough information from the user to be sure.
* - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4Ronald Oussoren2010-01-171-42/+89
| | | | | | | | | | | | - Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on MacOSX. - Make configure look for util.h as well as libutil.h. The former is the header file that on OSX contains the defition of openpty. (Needed to compile for OSX 10.4 on OSX 10.6) - Use the correct definition of CC to compile the pythonw executable
* use pkg-config to find the libffi headers when --with-system-ffi is used #6943Benjamin Peterson2010-01-011-0/+8
|
* More configure fixes: avoid sh 'integer argument expected' error when 'long ↵Mark Dickinson2009-12-311-3/+7
| | | | long' type doesn't exist.
* Add missing quotes.Mark Dickinson2009-12-311-1/+1
|
* add a --with-system-expat option to build pyexpat against the system's lib #7609Benjamin Peterson2009-12-311-0/+7
|
* Issue #6834: replace the implementation for the 'python' and 'pythonw' ↵Ronald Oussoren2009-12-241-14/+9
| | | | | | | | | | | | | | | | | executables on OSX. The previous implementation used execv(2) to run the real interpreter, which means that you cannot use the arch(1) tool to select the architecture you want to use for a universal build because that only affects the python/pythonw wrapper and not the actual interpreter. The new version uses posix_spawnv with a number of OSX-specific options that ensure that the real interpreter is started using the same CPU architecture as the wrapper, and that means that 'arch -ppc python' now actually works. I've also changed the way that the wrapper looks for the framework: it is now linked to the framework rather than hardcoding the framework path. This should make it easier to provide pythonw support in tools like virtualenv.
* Issue #7492: Autoconf tests were leaving semaphore files behind. AddMark Dickinson2009-12-131-1/+3
| | | | sem_unlink calls to delete those semaphore files.
* disable pymalloc tricks with the --with-valgrind option #2422Benjamin Peterson2009-12-031-0/+13
| | | | Patch from James Henstridge.
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-1/+1
| | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone.
* Multiprocessing configure checks don't need LIBMMark Dickinson2009-11-281-33/+32
|
* Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORESMark Dickinson2009-11-281-2/+2
| | | | | to indicate that semaphores aren't available; define a new variable POSIX_SEMAPHORES_NOT_ENABLED instead.
* Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.Martin v. Löwis2009-11-271-1/+3
|
* Issue #7272: Add configure test to detect whether sem_open worksMark Dickinson2009-11-201-0/+35
| | | | | | properly, and use this to skip test_multiprocessing on platforms where sem_open raises a signal. This should fix some FreeBSD buildbot failures for test_multiprocessing.
* Fix for issue #7085Ronald Oussoren2009-11-191-0/+5
| | | | | | | | | | | | | | On MacOSX 10.6 the CoreFoundation framework must be initialized on the main thread, the constructor function in that framework will cause an SIGABRT when it is called on any other thread. Because a number of extension link (indirectly) to CoreFoundation and the Python core itself didn't the interpreter crashed when importing some extensions, such as _locale, on a secondary thread. This fix ensures that Python is linked to CoreFoundation on OSX, which results in the CoreFoundation constructor being called when Python is loaded. This does not require code changes.
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-0/+48
| | | | PyFormat_FromStringV and PyErr_Format.
* Issue #5792: Extend short float repr support to x86 platforms using suncc ↵Mark Dickinson2009-11-151-18/+17
| | | | | | or icc. Many thanks Stefan Krah for help and OpenSolaris testing.
* see issue1006238, this merges in the following patch to ease crossGregory P. Smith2009-11-021-9/+6
| | | | | | compiling the printf %zd check. http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.5-cross-printf.patch?rev=1.1&view=markup
* see http://bugs.python.org/issue1006238 this merges in the followingGregory P. Smith2009-11-021-14/+14
| | | | | | patch to make cross compilation of the chflags check easier: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.6-chflags-cross.patch?rev=1.1
* issue1115: convert some AC_TRY_RUNs into AC_TRY_COMPILEs.Gregory P. Smith2009-11-011-6/+5
|
* Some platforms have rl_completion_append_character but not ↵Antoine Pitrou2009-10-261-0/+4
| | | | | | rl_completion_suppress_append. Reported by Mark D.
* Configure check for double rounding should take BASECFLAGS into accountMark Dickinson2009-10-241-2/+5
|
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-241-5/+107
| | | | | | | | | - add double endianness detection to configure script - add configure-time check to see whether we can use inline assembly to get and set x87 control word in configure script - add functions to get and set x87 control word in Python/pymath.c - add pyport.h logic to determine whether it's safe to use the short float repr or not
* * Update the Mac/README file. Add the list of OSX-specific configure optionsRonald Oussoren2009-09-291-1/+11
| | | | | | | | | to that README file with some explanation. * Be more strict in the configure script: complain loudly when the user has specified invalid combinations of OSX-specific configure arguments. The error message refers to the Mac/README file for more information.
* Fix typo in error messageRonald Oussoren2009-09-201-1/+1
|
* This is an update to r74701. How hard can it be to get a configure test right.Ronald Oussoren2009-09-081-0/+1
| | | | | This patch has already been backported as part of the backport of r74701, which is how I found this problem.
* Fix typo in configure.inRonald Oussoren2009-09-071-4/+21
|
* Fix build issues on OSX 10.6 (issue 6802)Ronald Oussoren2009-09-061-9/+62
|
* Add configure-time checks for gamma and error functions.Mark Dickinson2009-09-051-1/+2
|
* #5047: remove Monterey support from configure.Georg Brandl2009-09-041-21/+1
|
* Add a check to ensure the correct autoconf version is usedAlexandre Vassalotti2009-07-181-1/+9
| | | | | | for generating the configure script. Original idea by Martin von Löwis.
* Double-quote the test case for %zd printf() format support to avoidAlexandre Vassalotti2009-07-171-4/+5
| | | | mangling the array declarations in it.
* Clean up the test case for broken poll().Alexandre Vassalotti2009-07-171-15/+9
|
* Double-quote the test cases for chflags() and lchflags()Alexandre Vassalotti2009-07-171-4/+4
| | | | to ensure they don't get mangled.