summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Expand)AuthorAgeFilesLines
* bpo-43103: Fix build failure with macOS framework builds. (GH-24676)Ned Deily2021-03-011-1/+1
* bpo-42603: Use pkg-config to get TCL/TK paths for tkinter. (GH-23721)Manolis Stamatogiannakis2021-02-281-2/+7
* bpo-43103: Add configure --without-static-libpython (GH-24418)Victor Stinner2021-02-171-0/+27
* bpo-13501: allow choosing between readline and libedit (GH-24189)Roland Hieber2021-02-081-77/+109
* bpo-43031: Set a timeout when running tests in PGO build (GH-24339)Victor Stinner2021-01-271-1/+1
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2021-01-201-0/+16
* bpo-42874: Remove grep -qE options for Solaris 10 compatibility (GH-24200)Paul Ganssle2021-01-121-1/+1
* bpo-27640: Add --disable-test-modules configure option (GH-23886)pxinwr2020-12-301-1/+14
* bpo-39465: Add pycore_atomic_funcs.h header (GH-20766)Victor Stinner2020-12-231-5/+6
* bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using configure...Matti Picus2020-12-201-6/+1
* bpo-31904: Enable libpython3.so shared library for VxWorks (GH-23741)pxinwr2020-12-141-2/+2
* bpo-42598: Fix implicit function declarations in configure (GH-23690)Joshua Root2020-12-131-6/+7
* bpo-38443: Check that the specified universal architectures work (GH-22910)Ronald Oussoren2020-11-211-0/+7
* bpo-41625: Expose the splice() system call in the os module (GH-21947)Pablo Galindo2020-11-171-1/+1
* bpo-42087: Remove support for AIX 5.3 and below (GH-22830)Kevin Adler2020-11-161-15/+2
* bpo-41001: Add os.eventfd() (#20930)Christian Heimes2020-11-131-1/+13
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-5/+19
* bpo-35823: subprocess: Use vfork() instead of fork() on Linux when safe (GH-1...Alexey Izbyshev2020-10-231-1/+1
* bpo-38980: Only apply -fno-semantic-interposition if available (GH-22892)Petr Viktorin2020-10-221-0/+2
* bpo-38980: Add -fno-semantic-interposition when building with optimizations (...datetime_backport_testPablo Galindo2020-10-211-0/+8
* closes bpo-42030: Remove legacy AIX dynload support (GH-22717)Kevin Adler2020-10-161-6/+0
* bpo-40423: Optimization: use close_range(2) if available (GH-22651)Kyle Evans2020-10-111-2/+2
* bpo-41721: Add xlc options (GH-22096)Stefan Krah2020-09-041-1/+4
* bpo-19521: Fix parallel build race condition on AIX (GH-21997)Stefan Krah2020-08-291-9/+18
* bpo-41340: Removed fallback implementation for strdup (GH-21634)wasiher2020-07-271-1/+1
* BPO-41100: Support macOS 11 when building (GH-21113)Ronald Oussoren2020-06-251-1/+1
* bpo-40939: Remove the old parser (Part 2) (GH-21005)Lysandros Nikolaou2020-06-201-1/+1
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-1/+1
* bpo-40684: Fix make install for platlibdir=lib64 (GH-20736)Victor Stinner2020-06-091-1/+6
* Python 3.10.0a0 (GH-20198)Pablo Galindo2020-05-191-1/+1
* Revert "bpo-26317: Support OBJC and OBJCXX configure command line variables (...Ned Deily2020-05-181-19/+0
* bpo-26317: Support OBJC and OBJCXX configure command line variables (GH-20176)Ned Deily2020-05-181-0/+19
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-161-0/+36
* bpo-40637: Add option to disable builtin hashes (GH-20121)Christian Heimes2020-05-151-0/+26
* bpo-40514: Add --with-experimental-isolated-subinterpreters (GH-19926)Victor Stinner2020-05-051-0/+17
* bpo-40291: Add support for CAN_J1939 sockets (GH-19538)karl ding2020-04-291-2/+2
* bpo-40334: Fix builds outside the source directory and regenerate autoconf fi...Pablo Galindo2020-04-231-1/+1
* bpo-25780: Expose CAN_RAW_JOIN_FILTERS in the socket module (GH-19190)Zackery Spytz2020-04-091-0/+10
* bpo-39761: Fix dtrace build with empty $DFLAGS (GH-18766)Petr Viktorin2020-03-111-1/+1
* bpo-1294959: Add sys.platlibdir attribute (GH-18381)Victor Stinner2020-03-101-2/+26
* bpo-39794: Add --without-decimal-contextvar (#18702)Stefan Krah2020-02-291-0/+15
* closes bpo-39619 Fix os.chroot on HP-UX 11.31 (GH-18495)Ian Norton2020-02-131-0/+6
* bpo-38960: DTrace build fix for FreeBSD. (GH-17451)David Carlier2020-01-281-2/+1
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-3/+3
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-221-1/+1
* bpo-39160 Align the verbs, grammar and defaults for `./configure --help` (GH-...Anthony Shaw2020-01-141-42/+59
* bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303)Michael Felt2019-12-161-1/+11
* closes bpo-38713: Expose P_PIDFD in os if it's defined. (GH-17071)Benjamin Peterson2019-11-051-1/+1
* bpo-37415: Fix stdatomic.h header check for ICC compiler (GH-16717)Victor Stinner2019-10-221-3/+6
* bpo-11410: Standardize and use symbol visibility attributes across POSIX and ...Vinay Sajip2019-10-151-0/+20