| Index: third_party/sqlite/sqlite.gyp
|
| diff --git a/third_party/sqlite/sqlite.gyp b/third_party/sqlite/sqlite.gyp
|
| index 21245dbae0b915233f0e6403f756d12b4967c52a..20d9769eed4c21f9d7c36f043d4287f0399fd824 100644
|
| --- a/third_party/sqlite/sqlite.gyp
|
| +++ b/third_party/sqlite/sqlite.gyp
|
| @@ -18,7 +18,7 @@
|
| 'SQLITE_ENABLE_MEMORY_MANAGEMENT',
|
| 'SQLITE_SECURE_DELETE',
|
| # Custom flag to tweak pcache pools.
|
| - # TODO(shess): This shouldn't use faux-SQLite naming.
|
| + # TODO(shess): This shouldn't use faux-SQLite naming.
|
| 'SQLITE_SEPARATE_CACHE_POOLS',
|
| # TODO(shess): SQLite adds mutexes to protect structures which cross
|
| # threads. In theory Chromium should be able to turn this off for a
|
| @@ -81,9 +81,11 @@
|
| 'sqlite_regexp',
|
| ],
|
| 'link_settings': {
|
| - 'libraries': [
|
| - '$(SDKROOT)/usr/lib/libsqlite3.dylib',
|
| - ],
|
| + 'xcode_settings': {
|
| + 'OTHER_LDFLAGS': [
|
| + '-lsqlite3',
|
| + ]
|
| + },
|
| },
|
| }],
|
| ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
|
|
|