This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Handle --enable-loadable-sqlite-extensions in configure
Type: enhancement Stage: resolved
Components: Build Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: christian.heimes, erlendaasland
Priority: normal Keywords: patch

Created on 2021-11-05 19:55 by christian.heimes, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29434 merged christian.heimes, 2021-11-05 19:59
Messages (2)
msg405826 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2021-11-05 19:55
The --enable-loadable-sqlite-extensions configure option is currently handled by a check in setup.py. The approach is incompatible with Modules/Setup and yields incorrect results for --enable-loadable-sqlite-extensions=no. Instead of reading the value from CONFIG_ARGS, configure should add an AC_DEFINE to pyconfig.h
msg405852 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2021-11-06 09:30
New changeset e9594f6747eaaaa848c26e2bf67d467aabfd62b3 by Christian Heimes in branch 'main':
bpo-45731: Handle --enable-loadable-sqlite-extensions in configure (GH-29434)
https://github.com/python/cpython/commit/e9594f6747eaaaa848c26e2bf67d467aabfd62b3
History
Date User Action Args
2022-04-11 14:59:52adminsetgithub: 89894
2021-11-06 09:30:54christian.heimessetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-11-06 09:30:41christian.heimessetmessages: + msg405852
2021-11-05 20:37:06erlendaaslandsetnosy: + erlendaasland
2021-11-05 19:59:17christian.heimessetkeywords: + patch
stage: patch review
pull_requests: + pull_request27688
2021-11-05 19:55:46christian.heimescreate