aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/api/sqlite3-wasm.c
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-12-23 18:25:48 +0000
committerstephan <stephan@noemail.net>2022-12-23 18:25:48 +0000
commit7298c2e09958baccfb3233d71c32611f28e84dc0 (patch)
tree04c6b7590b87c4b4f77ed24b88a6ecad842d355a /ext/wasm/api/sqlite3-wasm.c
parenta9e1d96cd8d8105f878e60065820f3316a2cd410 (diff)
downloadsqlite-7298c2e09958baccfb3233d71c32611f28e84dc0.tar.gz
sqlite-7298c2e09958baccfb3233d71c32611f28e84dc0.zip
Add SQLITE_ENABLE_MATH_FUNCTIONS to the list of feature flags in sqlite3-wasm.c.
FossilOrigin-Name: 58503cd148c9613abfaf7c1386c34806150bd521966864ccbb821ea7dede8e5a
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r--ext/wasm/api/sqlite3-wasm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c
index a42ea68d4..ed3b96dea 100644
--- a/ext/wasm/api/sqlite3-wasm.c
+++ b/ext/wasm/api/sqlite3-wasm.c
@@ -102,6 +102,9 @@
#ifndef SQLITE_ENABLE_OFFSET_SQL_FUNC
# define SQLITE_ENABLE_OFFSET_SQL_FUNC 1
#endif
+#ifndef SQLITE_ENABLE_MATH_FUNCTIONS
+# define SQLITE_ENABLE_MATH_FUNCTIONS 1
+#endif
#ifndef SQLITE_ENABLE_RTREE
# define SQLITE_ENABLE_RTREE 1
#endif