File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -820,6 +820,7 @@ Dan Parisien
820820William Park
821821Harri Pasanen
822822Berker Peksag
823+ Andreas Pelme
823824Bo Peng
824825Joe Peterson
825826Randy Pausch
Original file line number Diff line number Diff line change @@ -1009,6 +1009,9 @@ Tests
10091009Build
10101010-----
10111011
1012+ - Issue #5033: Fix building of the sqlite3 extension module when the
1013+ SQLite library version has "beta" in it. Patch by Andreas Pelme.
1014+
10121015- Issue #3754: fix typo in pthread AC_CACHE_VAL.
10131016
10141017- Issue #17029: Let h2py search the multiarch system include directory.
Original file line number Diff line number Diff line change @@ -1012,7 +1012,7 @@ class db_found(Exception): pass
10121012 with open (f ) as file :
10131013 incf = file .read ()
10141014 m = re .search (
1015- r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(. *)"' , incf )
1015+ r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"([\d\.] *)"' , incf )
10161016 if m :
10171017 sqlite_version = m .group (1 )
10181018 sqlite_version_tuple = tuple ([int (x )
You can’t perform that action at this time.
0 commit comments