diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:08:50 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:08:50 +0000 |
commit | d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e (patch) | |
tree | 05dbd35b13b4541b539611ed8578efa7d31b6e2d /chrome/common/sqlite_compiled_statement.cc | |
parent | 63c73a41a18228493aa443243edb5082b667d50b (diff) | |
download | chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.zip chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.tar.gz chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.tar.bz2 |
Linux: fix up use_system_{libxml,libxslt,sqlite3}
http://codereview.chromium.org/164450
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23324 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/sqlite_compiled_statement.cc')
-rw-r--r-- | chrome/common/sqlite_compiled_statement.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/common/sqlite_compiled_statement.cc b/chrome/common/sqlite_compiled_statement.cc index 9449818..93b0d67 100644 --- a/chrome/common/sqlite_compiled_statement.cc +++ b/chrome/common/sqlite_compiled_statement.cc @@ -4,10 +4,15 @@ #include "chrome/common/sqlite_compiled_statement.h" +#if defined(USE_SYSTEM_SQLITE) +#include <sqlite3.h> +#else +#include "third_party/sqlite/preprocessed/sqlite3.h" +#endif + #include "base/logging.h" #include "base/stl_util-inl.h" #include "chrome/common/sqlite_utils.h" -#include "third_party/sqlite/preprocessed/sqlite3.h" // SqliteStatementCache ------------------------------------------------------- |