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