Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fossil now needs at least SQLite 3.22, so check for that |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
37cbd97cab783a37d6a6b948ab6933fa |
User & Date: | jan.nijtmans 2018-01-16 08:32:28 |
Context
2018-01-16
| ||
08:34 | Fix recognition of sha3 in marks file. Patch adapted from Dingyuan Wang's report. Thanks! check-in: 90b07ed5 user: jan.nijtmans tags: trunk | |
08:32 | Fossil now needs at least SQLite 3.22, so check for that check-in: 37cbd97c user: jan.nijtmans tags: trunk | |
2018-01-15
| ||
22:07 | Update the built-in SQLite to the first 3.22.0 beta. check-in: 1a95af72 user: drh tags: trunk | |
Changes
Changes to auto.def.
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# search for the system SQLite once with -ldl, and once without. If # the library can only be found with $extralibs set to -ldl, then # the code below will append -ldl to LIBS. # foreach extralibs {{} {-ldl}} { # Locate the system SQLite by searching for sqlite3_open(). Then check # if sqlite3_prepare_v3() can be found as well. If we can find open() but # not prepare_v3(), then the system SQLite is too old to link against # fossil. # if {[check-function-in-lib sqlite3_open sqlite3 $extralibs]} { if {![check-function-in-lib sqlite3_prepare_v3 sqlite3 $extralibs]} { user-error "system sqlite3 too old (require >= 3.20.0)" } # Success. Update symbols and return. # define USE_SYSTEM_SQLITE 1 define-append LIBS -lsqlite3 define-append LIBS $extralibs |
| | | | |
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# search for the system SQLite once with -ldl, and once without. If # the library can only be found with $extralibs set to -ldl, then # the code below will append -ldl to LIBS. # foreach extralibs {{} {-ldl}} { # Locate the system SQLite by searching for sqlite3_open(). Then check # if sqlite3_vtab_collation() can be found as well. If we can find open() but # not vtab_collation(), then the system SQLite is too old to link against # fossil. # if {[check-function-in-lib sqlite3_open sqlite3 $extralibs]} { if {![check-function-in-lib sqlite3_vtab_collation sqlite3 $extralibs]} { user-error "system sqlite3 too old (require >= 3.22.0)" } # Success. Update symbols and return. # define USE_SYSTEM_SQLITE 1 define-append LIBS -lsqlite3 define-append LIBS $extralibs |