Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fossil needs SQLite 3.28.0 now, so check for that. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e3258f1b4369ffd12abd524d75fd2566 |
User & Date: | jan.nijtmans 2019-03-22 11:56:35.474 |
Context
2019-03-22
| ||
18:39 | Add a new explanatory comment to clarify the operation of the "fossil server" implementation. No code changes. ... (check-in: c546212f user: drh tags: trunk) | |
11:56 | Fossil needs SQLite 3.28.0 now, so check for that. ... (check-in: e3258f1b user: jan.nijtmans tags: trunk) | |
2019-03-21
| ||
20:50 | Add the "New Era" or "元号" placeholder to the (regexp) Unicode tables. So fossil is ready for the expected japanese May 1 event. See: http://blog.unicode.org/2018/09/new-japanese-era.html ... (check-in: 9b679012 user: jan.nijtmans tags: trunk) | |
Changes
Changes to auto.def.
︙ | ︙ | |||
124 125 126 127 128 129 130 | # 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 | | | | | | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | # 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_stmt_isexplain can be found as well. If we can find open() but # not stmt_isexplain(), 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_stmt_isexplain sqlite3 $extralibs]} { user-error "system sqlite3 too old (require >= 3.28.0)" } # Success. Update symbols and return. # define USE_SYSTEM_SQLITE 1 define-append LIBS -lsqlite3 define-append LIBS $extralibs |
︙ | ︙ |