OLD | NEW |
1 Name: sqlite | 1 Name: sqlite |
2 License File: src/LICENSE | 2 License File: src/LICENSE |
3 URL: http://sqlite.org/ | 3 URL: http://sqlite.org/ |
4 Version: 3.7.6.3 | 4 Version: 3.7.6.3 |
5 Included In Release: Yes | 5 Included In Release: Yes |
6 Security Critical: Yes | 6 Security Critical: Yes |
7 | 7 |
8 Instructions for importing a new release of SQLite from sqlite.org. | 8 Instructions for importing a new release of SQLite from sqlite.org. |
9 | 9 |
10 Note: our current base version is 3.7.6.3. | 10 Note: our current base version is 3.7.6.3. |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 safe-tolower.patch | 63 safe-tolower.patch |
64 fts2.patch | 64 fts2.patch |
65 fts3.patch | 65 fts3.patch |
66 fts3_85522.patch | 66 fts3_85522.patch |
67 icu-regexp.patch | 67 icu-regexp.patch |
68 icu-shell.patch | 68 icu-shell.patch |
69 attach-integer.patch | 69 attach-integer.patch |
70 webdb.patch | 70 webdb.patch |
71 test.patch | 71 test.patch |
72 mac_time_machine.patch | 72 mac_time_machine.patch |
| 73 system-sqlite.patch |
73 | 74 |
74 So, e.g. you could do this to apply all our patches to vanilla SQLite: | 75 So, e.g. you could do this to apply all our patches to vanilla SQLite: |
75 | 76 |
76 cd sqlite-$LATEST | 77 cd sqlite-$LATEST |
77 patch -p0 < ../sqlite/misc.patch | 78 patch -p0 < ../sqlite/misc.patch |
78 patch -p0 < ../sqlite/preload-cache.patch | 79 patch -p0 < ../sqlite/preload-cache.patch |
79 patch -p0 < ../sqlite/fts2.patch | 80 patch -p0 < ../sqlite/fts2.patch |
80 patch -p0 < ../sqlite/fts3.patch | 81 patch -p0 < ../sqlite/fts3.patch |
81 patch -p0 < ../sqlite/fts3_85522.patch | 82 patch -p0 < ../sqlite/fts3_85522.patch |
82 patch -p0 < ../sqlite/icu-shell.patch | 83 patch -p0 < ../sqlite/icu-shell.patch |
83 patch -p0 < ../sqlite/webdb.patch | 84 patch -p0 < ../sqlite/webdb.patch |
84 patch -p0 < ../sqlite/test.patch | 85 patch -p0 < ../sqlite/test.patch |
85 patch -p0 < ../sqlite/mac_time_machine.patch | 86 patch -p0 < ../sqlite/mac_time_machine.patch |
| 87 patch -p0 < ../sqlite/system-sqlite.patch |
86 | 88 |
87 This will only be the case if all changes we make also update the corresponding | 89 This will only be the case if all changes we make also update the corresponding |
88 patch files. Therefore please remember to do that whenever you make a change! | 90 patch files. Therefore please remember to do that whenever you make a change! |
89 | 91 |
90 Descriptions of the changes we've made can be found at the bottom of this file. | 92 Descriptions of the changes we've made can be found at the bottom of this file. |
91 | 93 |
92 -------------------------------------------- | 94 -------------------------------------------- |
93 | 95 |
94 How to run the SQLite tests for the Chromium version of SQLite on Linux. | 96 How to run the SQLite tests for the Chromium version of SQLite on Linux. |
95 | 97 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 WebKit patch using the new function lands. | 182 WebKit patch using the new function lands. |
181 - From mac_time_machine.patch: | 183 - From mac_time_machine.patch: |
182 When __APPLE__ and when creating a -journal file with any unix-type vfs, | 184 When __APPLE__ and when creating a -journal file with any unix-type vfs, |
183 determine if the database for which the journal is being created has been | 185 determine if the database for which the journal is being created has been |
184 excluded from being backed up using Apple's Time Machine and if so then also | 186 excluded from being backed up using Apple's Time Machine and if so then also |
185 exclude the journal. These changes were made in pager.c with includes of | 187 exclude the journal. These changes were made in pager.c with includes of |
186 Apple interfaces being made in sqliteInt.h. In order to eliminate a symbol | 188 Apple interfaces being made in sqliteInt.h. In order to eliminate a symbol |
187 conflict with an Apple library after amalgamation it was also necessary to | 189 conflict with an Apple library after amalgamation it was also necessary to |
188 rename fts3_porter.c's 'cType' to 'vOrCType'. | 190 rename fts3_porter.c's 'cType' to 'vOrCType'. |
189 - fts3_85522.patch allows fts3 to work if PRAGMA is not authorized. | 191 - fts3_85522.patch allows fts3 to work if PRAGMA is not authorized. |
OLD | NEW |