File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -763,6 +763,7 @@ Randy Pausch
763763Samuele Pedroni
764764Marcel van der Peijl
765765Berker Peksag
766+ Andreas Pelme
766767Steven Pemberton
767768Bo Peng
768769Santiago Peresón
Original file line number Diff line number Diff line change @@ -858,6 +858,9 @@ Tests
858858Build
859859-----
860860
861+ - Issue #5033: Fix building of the sqlite3 extension module when the
862+ SQLite library version has "beta" in it. Patch by Andreas Pelme.
863+
861864- Issue #17228: Fix building without pymalloc.
862865
863866- Issue #17086: Backport the patches from the 3.3 branch to cross-build
Original file line number Diff line number Diff line change @@ -1114,7 +1114,7 @@ class db_found(Exception): pass
11141114 if sqlite_setup_debug : print "sqlite: found %s" % f
11151115 incf = open (f ).read ()
11161116 m = re .search (
1117- r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(. *)"' , incf )
1117+ r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"([\d\.] *)"' , incf )
11181118 if m :
11191119 sqlite_version = m .group (1 )
11201120 sqlite_version_tuple = tuple ([int (x )
You can’t perform that action at this time.
0 commit comments