On Mon, Nov 07, 2016 at 09:26:50AM +0000, Stuart Henderson wrote: > We haven't run into this with Mozilla yet because the newer versions are > still using their internal conflicting copy of sqlite. It would be nice to > get this wrapped up :-)
Interesting, because im building the upcoming 50.0 with system-sqlite, and.. checking for sqlite3 >= 3.13.0... yes checking SQLITE_CFLAGS... -I/usr/local/include checking SQLITE_LIBS... -L/usr/local/lib -lsqlite3 checking for SQLITE_SECURE_DELETE support in system SQLite... (cached) yes checking for SQLITE_THREADSAFE support in system SQLite... yes checking for SQLITE_ENABLE_FTS3 support in system SQLite... yes checking for SQLITE_ENABLE_UNLOCK_NOTIFY support in system SQLite... yes checking for SQLITE_ENABLE_DBSTAT_VTAB support in system SQLite... yes And i saw no issues at runtime, so THREADSAFE and ENABLE_FTS3 might be default, since we only force-enable DBSTAT_VTAB and UNLOCK_NOTIFY. Landry