From 3725af73b9f9bf3b1c6d47d1232ce85347afb853 Mon Sep 17 00:00:00 2001 From: stephan Date: Fri, 21 Oct 2022 17:48:49 +0000 Subject: Add SQLITE_DQS to the compileoptions_used list, per request in [forum post 8b1060122b|forum:8b1060122b]. Force DQS=0 in sqlite3-wasm.c. FossilOrigin-Name: fcd9e0dbe3226f3f7ccc15b11fc3aa3b8058571bef274c25a33e9753e22f7551 --- ext/wasm/api/sqlite3-wasm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ext/wasm/api/sqlite3-wasm.c') diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index 8b767948e..754f9cf0d 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -56,7 +56,7 @@ */ /**********************************************************************/ -/* SQLITE_DEFAULT_... */ +/* SQLITE_D... */ #ifndef SQLITE_DEFAULT_CACHE_SIZE /* ** The OPFS impls benefit tremendously from an increased cache size @@ -75,6 +75,8 @@ #ifndef SQLITE_DEFAULT_UNIX_VFS # define SQLITE_DEFAULT_UNIX_VFS "unix-none" #endif +#undef SQLITE_DQS +#define SQLITE_DQS 0 /**********************************************************************/ /* SQLITE_ENABLE_... */ -- cgit v1.2.3