diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-20 10:02:49 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-02-20 10:02:49 -0500 |
commit | 0e9957c412002000067479e7ce582e8d625e21c0 (patch) | |
tree | fd05e5f2894ac887a0468a3ddd09243ecdba9553 /dom/system | |
parent | e3d81b698ea104e4b55ee618b931ea1311c04169 (diff) | |
download | uxp-0e9957c412002000067479e7ce582e8d625e21c0.tar.gz |
Issue #1457 - Unfold sqlite3 from nss
Diffstat (limited to 'dom/system')
-rw-r--r-- | dom/system/OSFileConstants.cpp | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/dom/system/OSFileConstants.cpp b/dom/system/OSFileConstants.cpp index 86377e75a0..ec84d784b3 100644 --- a/dom/system/OSFileConstants.cpp +++ b/dom/system/OSFileConstants.cpp @@ -1048,22 +1048,11 @@ bool DefineOSFileConstants(JSContext *cx, JS::Handle<JSObject*> global) } #endif // defined(XP_MACOSX) - // sqlite3 is linked from different places depending on the platform + // sqlite3 is always a shared lib nsAutoString libsqlite3; -#if defined(ANDROID) - // On Android, we use the system's libsqlite3 - libsqlite3.AppendLiteral(DLL_PREFIX); - libsqlite3.AppendLiteral("sqlite3"); - libsqlite3.AppendLiteral(DLL_SUFFIX); -#elif defined(XP_WIN) - // On Windows, for some reason, this is part of nss3.dll libsqlite3.AppendLiteral(DLL_PREFIX); - libsqlite3.AppendLiteral("nss3"); + libsqlite3.AppendLiteral("mozsqlite3"); libsqlite3.AppendLiteral(DLL_SUFFIX); -#else - // On other platforms, we link sqlite3 into libxul - libsqlite3 = libxul; -#endif // defined(ANDROID) || defined(XP_WIN) if (!SetStringProperty(cx, objPath, "libsqlite3", libsqlite3)) { return false; |