diff options
author | shess@chromium.org <shess@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-13 20:47:24 +0000 |
---|---|---|
committer | shess@chromium.org <shess@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-13 20:47:24 +0000 |
commit | fdd072ff1b52f405ed3c2b1cfb86c6e92e5018c1 (patch) | |
tree | 25148ebdaa0b4bc68c22acb4ac9ef75cb461c7a0 /third_party/sqlite/misc.patch | |
parent | e7dfb84e096a8f14717b4150bdb66a01032e1efa (diff) | |
download | chromium_src-fdd072ff1b52f405ed3c2b1cfb86c6e92e5018c1.zip chromium_src-fdd072ff1b52f405ed3c2b1cfb86c6e92e5018c1.tar.gz chromium_src-fdd072ff1b52f405ed3c2b1cfb86c6e92e5018c1.tar.bz2 |
Convert to SQLite amalgamation.
SQLite generally distributes using a script-generated "Giant file of
stuff", called the amalgamation. It's apparently faster, due to more
opportunities for optimization, but for Chromium the attraction is
that we don't need as many patches to SQLite. Imports of future
versions of SQLite should be simpler, so long as an Ubuntu box is
available.
BUG=71731
TEST=automated testing and watching closely.
Review URL: http://codereview.chromium.org/6835006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81471 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/sqlite/misc.patch')
-rw-r--r-- | third_party/sqlite/misc.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/third_party/sqlite/misc.patch b/third_party/sqlite/misc.patch index 10fe084..1bf9ca1 100644 --- a/third_party/sqlite/misc.patch +++ b/third_party/sqlite/misc.patch @@ -1,19 +1,3 @@ -Index: ext/icu/icu.c -=================================================================== ---- ext/icu/icu.c 2009-09-03 13:32:06.000000000 -0700 -+++ ext/icu/icu.c 2009-07-01 12:08:37.000000000 -0700 -@@ -38,6 +38,11 @@ - - #include <assert.h> - -+// TODO(evanm): this is cut'n'pasted from fts2.c. Why is it necessary? -+#if !defined(SQLITE_CORE) -+# define SQLITE_CORE 1 -+#endif -+ - #ifndef SQLITE_CORE - #include "sqlite3ext.h" - SQLITE_EXTENSION_INIT1 Index: src/expr.c =================================================================== --- src/expr.c 2009-09-08 12:16:11.000000000 -0700 |