summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Expand)AuthorAgeFilesLines
* bpo-45800: Move pyexpat build setup into configure (GH-29547)Christian Heimes2021-11-141-0/+14
* bpo-45798: Move _decimal build setup into configure (GH-29541)Christian Heimes2021-11-131-1/+77
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-111-1/+2
* bpo-45723: Add --with-pkg-config to configure (GH-29517)Christian Heimes2021-11-101-2/+30
* bpo-45747: Detect gdbm/dbm dependencies in configure (GH-29467)Christian Heimes2021-11-101-1/+72
* bpo-45723: Improve and simplify more configure.ac checks (GH-29485)Erlend Egeberg Aasland2021-11-101-107/+49
* bpo-45723: Remove dead code for obsolete `--with-dyld` option (GH-29500)Erlend Egeberg Aasland2021-11-091-4/+0
* bpo-45763: Detect compression build deps in configure (GH-29483)Christian Heimes2021-11-091-3/+20
* bpo-45723: Remove obsolete AC_EXEEXT from configure.ac (GH-29486)Erlend Egeberg Aasland2021-11-091-1/+0
* bpo-45743: -Wl,-search_paths_first is no longer needed (GH-29464)Christian Heimes2021-11-091-26/+0
* bpo-45723: Prepare support for autoconf 2.71 (GH-29441)Christian Heimes2021-11-081-21/+21
* bpo-45723: Add macro for disabling/enabling CC warnings (GH-29466)Erlend Egeberg Aasland2021-11-081-159/+51
* bpo-45723: Add helper macros and more caching to configure.ac (GH-29429)Christian Heimes2021-11-081-420/+245
* bpo-45723: Detect missing pkg-config (GH-29442)Christian Heimes2021-11-071-1/+11
* bpo-45731: Handle --enable-loadable-sqlite-extensions in configure (GH-29434)Christian Heimes2021-11-061-2/+6
* bpo-43158: Use configure values for building _uuid extension (GH-29353)Christian Heimes2021-11-021-1/+6
* bpo-45548: Fix out-of-tree and Debian builds (GH-29263)Christian Heimes2021-10-281-1/+17
* bpo-45548: Remove checks for finite and gamma (GH-29206)Christian Heimes2021-10-251-1/+1
* bpo-45548: Remove _math.c workarounds for pre-C99 libm (GH-29179)Christian Heimes2021-10-251-2/+6
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-0/+17
* bpo-45536: Check OpenSSL APIs in configure (GH-29088)Christian Heimes2021-10-201-0/+42
* bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner2021-10-151-2/+2
* bpo-45440: Require math.h isinf() to build (GH-28894)Victor Stinner2021-10-131-1/+0
* bpo-45405: Prevent ``internal configure error`` when running ``configure`` w...David Bohman2021-10-131-3/+5
* bpo-45433: Do not link libpython against libcrypt (GH-28881)Mike Gilbert2021-10-111-0/+3
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-101-3/+6
* bpo-45163: Restrict added libnetwork check to builds on Haiku. (GH-28729)Ned Deily2021-10-051-2/+5
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)Victor Stinner2021-10-011-1/+1
* bpo-21302: Add nanosleep() implementation for time.sleep() in Unix (GH-28545)Victor Stinner2021-09-251-0/+6
* bpo-21302: Add clock_nanosleep() implementation for time.sleep() (GH-28111)Livius2021-09-131-0/+6
* bpo-45163: Haiku build fix. (GH-28269)David CARLIER2021-09-111-1/+5
* bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309)Łukasz Langa2021-09-031-40/+53
* bpo-44340: Add support for building with clang full/thin lto (GH-27231)Dong-hee Na2021-07-191-12/+45
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-4/+4
* bpo-43109: Fix --with-lto configure option on macOS (GH-26341)Ned Deily2021-05-251-3/+6
* Fix typo for configure.ac (GH-26305)Dong-hee Na2021-05-211-1/+1
* Python 3.11.0a0Pablo Galindo2021-05-031-1/+1
* bpo-43568: Drop support for MACOSX_DEPLOYMENT_TARGET < 10.3 (GH-25827)Ned Deily2021-05-031-13/+1
* bpo-44009: Provide "python3.x-intel64" for Apple Silicon Macs (GH-25804)Ned Deily2021-05-021-4/+8
* bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)Christian Heimes2021-05-011-1/+1
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub Kulík2021-04-301-0/+16
* bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)Christian Heimes2021-04-171-36/+0
* bpo-43179: Generalise alignment for optimised string routines (GH-24624)Jessica Clarke2021-03-311-1/+3
* bpo-43617: Check autoconf-archive package in configure.ac (GH-25016)Christian Heimes2021-03-271-4/+11
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-231-1/+1
* bpo-43466: Add --with-openssl-rpath configure option (GH-24820)Christian Heimes2021-03-191-0/+24
* 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-03-011-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-091-77/+109