Fossil SCM
Updated MINIMUM_SQLITE_VERSION to 3.37, as reported in [forum:81cd206073 | forum post 81cd206073].
Commit
ebea00c5bd0a06e3698d40ad965e0381ad21c305621d44fccc3cee48a1bf73f0
Parent
c128f93042ac892…
2 files changed
+1
-1
+2
-2
M
auto.def
+1
-1
| --- auto.def | ||
| +++ auto.def | ||
| @@ -32,11 +32,11 @@ | ||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | # Update the minimum required SQLite version number here, and also |
| 35 | 35 | # in src/main.c near the sqlite3_libversion_number() call. Take care |
| 36 | 36 | # that both places agree! |
| 37 | -define MINIMUM_SQLITE_VERSION "3.35.0" | |
| 37 | +define MINIMUM_SQLITE_VERSION "3.37.0" | |
| 38 | 38 | |
| 39 | 39 | # This is useful for people wanting Fossil to use an external SQLite library |
| 40 | 40 | # to compare the one they have against the minimum required |
| 41 | 41 | if {[opt-bool print-minimum-sqlite-version]} { |
| 42 | 42 | puts [get-define MINIMUM_SQLITE_VERSION] |
| 43 | 43 |
| --- auto.def | |
| +++ auto.def | |
| @@ -32,11 +32,11 @@ | |
| 32 | } |
| 33 | |
| 34 | # Update the minimum required SQLite version number here, and also |
| 35 | # in src/main.c near the sqlite3_libversion_number() call. Take care |
| 36 | # that both places agree! |
| 37 | define MINIMUM_SQLITE_VERSION "3.35.0" |
| 38 | |
| 39 | # This is useful for people wanting Fossil to use an external SQLite library |
| 40 | # to compare the one they have against the minimum required |
| 41 | if {[opt-bool print-minimum-sqlite-version]} { |
| 42 | puts [get-define MINIMUM_SQLITE_VERSION] |
| 43 |
| --- auto.def | |
| +++ auto.def | |
| @@ -32,11 +32,11 @@ | |
| 32 | } |
| 33 | |
| 34 | # Update the minimum required SQLite version number here, and also |
| 35 | # in src/main.c near the sqlite3_libversion_number() call. Take care |
| 36 | # that both places agree! |
| 37 | define MINIMUM_SQLITE_VERSION "3.37.0" |
| 38 | |
| 39 | # This is useful for people wanting Fossil to use an external SQLite library |
| 40 | # to compare the one they have against the minimum required |
| 41 | if {[opt-bool print-minimum-sqlite-version]} { |
| 42 | puts [get-define MINIMUM_SQLITE_VERSION] |
| 43 |
+2
-2
| --- src/main.c | ||
| +++ src/main.c | ||
| @@ -698,12 +698,12 @@ | ||
| 698 | 698 | fossil_limit_memory(1); |
| 699 | 699 | |
| 700 | 700 | /* When updating the minimum SQLite version, change the number here, |
| 701 | 701 | ** and also MINIMUM_SQLITE_VERSION value set in ../auto.def. Take |
| 702 | 702 | ** care that both places agree! */ |
| 703 | - if( sqlite3_libversion_number()<3035000 ){ | |
| 704 | - fossil_panic("Unsuitable SQLite version %s, must be at least 3.35.0", | |
| 703 | + if( sqlite3_libversion_number()<3037000 ){ | |
| 704 | + fossil_panic("Unsuitable SQLite version %s, must be at least 3.37.0", | |
| 705 | 705 | sqlite3_libversion()); |
| 706 | 706 | } |
| 707 | 707 | |
| 708 | 708 | sqlite3_config(SQLITE_CONFIG_MULTITHREAD); |
| 709 | 709 | sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0); |
| 710 | 710 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -698,12 +698,12 @@ | |
| 698 | fossil_limit_memory(1); |
| 699 | |
| 700 | /* When updating the minimum SQLite version, change the number here, |
| 701 | ** and also MINIMUM_SQLITE_VERSION value set in ../auto.def. Take |
| 702 | ** care that both places agree! */ |
| 703 | if( sqlite3_libversion_number()<3035000 ){ |
| 704 | fossil_panic("Unsuitable SQLite version %s, must be at least 3.35.0", |
| 705 | sqlite3_libversion()); |
| 706 | } |
| 707 | |
| 708 | sqlite3_config(SQLITE_CONFIG_MULTITHREAD); |
| 709 | sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0); |
| 710 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -698,12 +698,12 @@ | |
| 698 | fossil_limit_memory(1); |
| 699 | |
| 700 | /* When updating the minimum SQLite version, change the number here, |
| 701 | ** and also MINIMUM_SQLITE_VERSION value set in ../auto.def. Take |
| 702 | ** care that both places agree! */ |
| 703 | if( sqlite3_libversion_number()<3037000 ){ |
| 704 | fossil_panic("Unsuitable SQLite version %s, must be at least 3.37.0", |
| 705 | sqlite3_libversion()); |
| 706 | } |
| 707 | |
| 708 | sqlite3_config(SQLITE_CONFIG_MULTITHREAD); |
| 709 | sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0); |
| 710 |