summaryrefslogtreecommitdiff
path: root/pyconfig.h.in
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] closes bpo-34652: Always disable lchmod on Linux. (GH-9242)Benjamin Peterson2018-09-121-3/+0
| | | | | (cherry picked from commit 40caa05fa4d1810a1a6bfc34e0ec930c351089b7) Co-authored-by: Benjamin Peterson <benjamin@python.org>
* bpo-32635: Fix a segfault when importing the crypt module with libxcrypt. ↵Miss Islington (bot)2018-01-241-0/+3
| | | | | | | | (GH-5284) (#5295) glibc is deprecating libcrypt in favor of libxcrypt, however python assumes that crypt.h will always be included. This change makes the header inclusion explicit when libxcrypt is present on the system. (cherry picked from commit e768c86ef442ef89004089a8a34ce5909ffb90f2)
* bpo-31919: Fix building the curses module on OpenIndiana. (GH-4211) (#4216)Miss Islington (bot)2017-11-011-0/+3
| | | (cherry picked from commit 894ebd065e02debf20c0657d26020ecc42b7534f)
* bpo-25720: Fix the method for checking pad state of curses WINDOW (GH-4164) ↵Miss Islington (bot)2017-11-011-0/+3
| | | | | | | | | | | (#4213) Modify the code to use ncurses is_pad() instead of checking WINDOW _flags field. If your platform does not provide the is_pad(), the existing way that checks the field will be enabled. Note: This change does not drop support for platforms where do not have both WINDOW _flags field and is_pad(). (cherry picked from commit 8bc7d63560024681dce9f40445f2877b2987e92c)
* [2.7] bpo-31891: Fix building the curses module on NetBSD. (GH-4165). (#4194)Serhiy Storchaka2017-10-311-0/+18
| | | (cherry picked from commit baac01e629d90f63dfde6b5cc433f4bc65c5feeb)
* [2.7] bpo-31343: Include sys/sysmacros.h (GH-3318) (#3345)Christian Heimes2017-09-051-0/+3
| | | | | | | Include sys/sysmacros.h for major(), minor(), and makedev(). GNU C libray plans to remove the functions from sys/types.h. Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 75b961869a1184895c9d5bf41a57f3c985622662)
* add a specific configure check for sys/random.h (closes #28932)Benjamin Peterson2016-12-191-0/+3
|
* assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes ↵Benjamin Peterson2016-07-071-3/+0
| | | | #24557)
* Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric PriceMartin Panter2016-04-031-0/+3
|
* Issue #17603: Check for st_blocks field without requiring fileblocks.oMartin Panter2016-03-181-4/+0
|
* backport computed gotos (#4753)Benjamin Peterson2015-05-281-0/+6
|
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-0/+3
| | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* use getentropy when available (backport of 75ede5bec8db) (closes #23115)Benjamin Peterson2014-12-261-0/+3
|
* mmap obmalloc arenas so that they may be immediately returned to the system ↵Benjamin Peterson2014-02-041-0/+3
| | | | when unused (closes #20494)
* Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+3
| | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data.
* Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if ↵Christian Heimes2013-06-181-0/+3
| | | | it's available
* - Issue #17086: Backport the patches from the 3.3 branch to cross-builddoko@python.org2013-01-311-2/+2
| | | | the package.
* Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on ↵Mark Dickinson2012-12-021-0/+12
| | | | some platforms.
* - rename configure.in to configure.acMatthias Klose2012-03-141-1/+1
| | | | - change references from configure.in to configure.ac
* Issue #13415: Test in configure if unsetenv() has a return value or not.Charles-François Natali2011-11-271-0/+3
|
* Issue #8746: Correct faulty configure checks so that os.chflags() andNed Deily2011-06-271-2/+5
| | | | | | | os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
* run autoreconfBenjamin Peterson2010-10-161-2/+5
|
* Merged revisions 84584 via svnmerge fromAntoine Pitrou2010-09-071-0/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84584 | antoine.pitrou | 2010-09-07 16:52:42 +0200 (mar., 07 sept. 2010) | 4 lines Issue #4026: Make the fcntl extension build under AIX. Patch by Sébastien Sablé. ........
* configure.in: Avoid autoconf warning: Assume C89 semantics thatMatthias Klose2010-05-081-20/+59
| | | | | RETSIGTYPE is always void (issue #8510). pyconfig.h: Regenerate
* - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4Ronald Oussoren2010-01-171-0/+6
| | | | | | | | | | | | - 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
* disable pymalloc tricks with the --with-valgrind option #2422Benjamin Peterson2009-12-031-3/+6
| | | | Patch from James Henstridge.
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-0/+3
| | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone.
* Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORESMark Dickinson2009-11-281-0/+3
| | | | | 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-0/+12
|
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-0/+3
| | | | PyFormat_FromStringV and PyErr_Format.
* Some platforms have rl_completion_append_character but not ↵Antoine Pitrou2009-10-261-0/+3
| | | | | | rl_completion_suppress_append. Reported by Mark D.
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-241-0/+16
| | | | | | | | | - 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
* Add configure-time checks for gamma and error functions.Mark Dickinson2009-09-051-0/+15
|
* Regenerate configure script using autoconf 2.61.Alexandre Vassalotti2009-07-171-51/+15
|
* Revert r74048.Alexandre Vassalotti2009-07-171-3/+3
|
* Regenerate configure script.Alexandre Vassalotti2009-07-171-3/+3
|
* Issue #3585: Add pkg-config support.Antoine Pitrou2009-05-241-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 Dickinson2009-04-181-0/+3
|
* issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵Jesse Noller2009-04-021-0/+15
| | | | Lowis for help
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+29
| | | | Backport of r70459.
* isinf and isnan are macros, not functions; fix configure scriptMark Dickinson2009-01-041-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 inMark Dickinson2009-01-041-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öwis2008-10-031-1/+1
|
* - Issue #1204: The configure script now tests for additional librariesGregory P. Smith2008-09-071-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 r64002Mark Dickinson2008-06-271-0/+6
| | | | to configure and pyconfig.h.in.
* Fix build issue on OSX 10.4Ronald Oussoren2008-06-061-3/+3
|
* MacOS X: Enable 4-way universal buildsRonald Oussoren2008-06-051-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öwis2008-05-231-0/+3
|
* test_math and test_cmath are failing on the FreeBSD 6.2 trunk buildbot,Mark Dickinson2008-04-211-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 Norwitz2008-03-281-0/+3
|