mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #5033: Fix building of the sqlite3 extension module
This commit is contained in:
commit
d2132144a4
3 changed files with 5 additions and 1 deletions
|
@ -908,6 +908,7 @@ Samuele Pedroni
|
||||||
Justin Peel
|
Justin Peel
|
||||||
Marcel van der Peijl
|
Marcel van der Peijl
|
||||||
Berker Peksag
|
Berker Peksag
|
||||||
|
Andreas Pelme
|
||||||
Steven Pemberton
|
Steven Pemberton
|
||||||
Bo Peng
|
Bo Peng
|
||||||
Santiago Peresón
|
Santiago Peresón
|
||||||
|
|
|
@ -694,6 +694,9 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #5033: Fix building of the sqlite3 extension module when the
|
||||||
|
SQLite library version has "beta" in it. Patch by Andreas Pelme.
|
||||||
|
|
||||||
- Issue #17228: Fix building without pymalloc.
|
- Issue #17228: Fix building without pymalloc.
|
||||||
|
|
||||||
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
|
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1062,7 +1062,7 @@ class PyBuildExt(build_ext):
|
||||||
with open(f) as file:
|
with open(f) as file:
|
||||||
incf = file.read()
|
incf = file.read()
|
||||||
m = re.search(
|
m = re.search(
|
||||||
r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(.*)"', incf)
|
r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"([\d\.]*)"', incf)
|
||||||
if m:
|
if m:
|
||||||
sqlite_version = m.group(1)
|
sqlite_version = m.group(1)
|
||||||
sqlite_version_tuple = tuple([int(x)
|
sqlite_version_tuple = tuple([int(x)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue