| OLD | NEW |
| 1 Name: SQLite |
| 2 URL: http://sqlite.org/ |
| 3 |
| 1 Instructions for importing a new release of SQLite from sqlite.org. | 4 Instructions for importing a new release of SQLite from sqlite.org. |
| 2 | 5 |
| 3 Note: our current base version is 3.6.18. | 6 Note: our current base version is 3.6.18. |
| 4 | 7 |
| 5 First, you need to be on Linux. | 8 First, you need to be on Linux. |
| 6 | 9 |
| 7 # Determine the versions of the release you want and the release we currently | 10 # Determine the versions of the release you want and the release we currently |
| 8 # have. (See the VERSION file to determine which release we currently have.) | 11 # have. (See the VERSION file to determine which release we currently have.) |
| 9 # You may wish to consult http://www.sqlite.org/changes.html to find out what | 12 # You may wish to consult http://www.sqlite.org/changes.html to find out what |
| 10 # changes have been made in each release. | 13 # changes have been made in each release. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 os_unix.c, to allow Chromium's Posix VFS implementation in | 159 os_unix.c, to allow Chromium's Posix VFS implementation in |
| 157 WebKit/WebCore/platform/sql/chromium/SQLiteFileSystemChromiumPosix.cpp | 160 WebKit/WebCore/platform/sql/chromium/SQLiteFileSystemChromiumPosix.cpp |
| 158 to correctly implement the "unused file descriptors" logic in the | 161 to correctly implement the "unused file descriptors" logic in the |
| 159 xDlOpen() method. The new functions are | 162 xDlOpen() method. The new functions are |
| 160 chromium_sqlite3_get_reusable_file_handle(), | 163 chromium_sqlite3_get_reusable_file_handle(), |
| 161 chromium_sqlite3_update_reusable_file_handle() and | 164 chromium_sqlite3_update_reusable_file_handle() and |
| 162 chromium_sqlite3_destroy_reusable_file_handle(). Also, added the | 165 chromium_sqlite3_destroy_reusable_file_handle(). Also, added the |
| 163 chromium_sqlite3_fill_in_unix_sqlite3_file() function that calls | 166 chromium_sqlite3_fill_in_unix_sqlite3_file() function that calls |
| 164 fillInUnixFile(), which will be made static again as soon as a | 167 fillInUnixFile(), which will be made static again as soon as a |
| 165 WebKit patch using the new function lands. | 168 WebKit patch using the new function lands. |
| OLD | NEW |