Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ed909bcb
Commit
ed909bcb
authored
Feb 23, 2013
by
Petri Lehtinen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #5033: Fix building of the sqlite3 extension module
parent
507eb09a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+1
-1
No files found.
Misc/ACKS
View file @
ed909bcb
...
...
@@ -820,6 +820,7 @@ Dan Parisien
William Park
Harri Pasanen
Berker Peksag
Andreas Pelme
Bo Peng
Joe Peterson
Randy Pausch
...
...
Misc/NEWS
View file @
ed909bcb
...
...
@@ -1009,6 +1009,9 @@ Tests
Build
-----
- Issue #5033: Fix building of the sqlite3 extension module when the
SQLite library version has "beta" in it. Patch by Andreas Pelme.
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
- Issue #17029: Let h2py search the multiarch system include directory.
...
...
setup.py
View file @
ed909bcb
...
...
@@ -1012,7 +1012,7 @@ class PyBuildExt(build_ext):
with open(f) as file:
incf = file.read()
m = re.search(
r'
\
s*.*#
\
s*.*define
\
s.*SQLITE_VERSION
\
W*"
(
.
*
)
"', incf)
r'
\
s*.*#
\
s*.*define
\
s.*SQLITE_VERSION
\
W*"
(
[
\
d
\
.]
*
)
"', incf)
if m:
sqlite_version = m.group(1)
sqlite_version_tuple = tuple([int(x)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment