From 4b074692f45fb57ec8bd3b718cbb920ff2a40a69 Mon Sep 17 00:00:00 2001 From: stephan Date: Mon, 3 Oct 2022 18:05:27 +0000 Subject: Omit WAL mode from the wasm build. FossilOrigin-Name: 88efe2a62b81e5ee9119f54204e397fda59666a327158c7b7c972e84a716869e --- ext/wasm/api/sqlite3-wasm.c | 3 +++ 1 file changed, 3 insertions(+) (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 99196db15..aaf6a7856 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -55,6 +55,9 @@ #ifndef SQLITE_THREADSAFE # define SQLITE_THREADSAFE 0 #endif +#ifndef SQLITE_OMIT_WAL +# define SQLITE_OMIT_WAL +#endif #include #include "sqlite3.c" /* yes, .c instead of .h. */ -- cgit v1.2.3