diff options
author | drh <drh@noemail.net> | 2015-10-08 19:29:18 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-10-08 19:29:18 +0000 |
commit | 50065656f7d038d8b1796edb83ecaa5347da5a1d (patch) | |
tree | d2909fb64acc6a0187d2c4b4941b92222c125cb6 /src/ctime.c | |
parent | d7fd6aa4ba568e33e9879f94a8542fba0d7be828 (diff) | |
download | sqlite-50065656f7d038d8b1796edb83ecaa5347da5a1d.tar.gz sqlite-50065656f7d038d8b1796edb83ecaa5347da5a1d.zip |
First attempt to add json1 and fts5 to the amalgamation. This check-in does
not compile.
FossilOrigin-Name: d820a1bd1b8dd702d1b3a099af393530cc5a5d51
Diffstat (limited to 'src/ctime.c')
-rw-r--r-- | src/ctime.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c index 9503214f5..17dd710bc 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -96,12 +96,18 @@ static const char * const azCompileOpt[] = { #if SQLITE_ENABLE_FTS4 "ENABLE_FTS4", #endif +#if SQLITE_ENABLE_FTS5 + "ENABLE_FTS5", +#endif #if SQLITE_ENABLE_ICU "ENABLE_ICU", #endif #if SQLITE_ENABLE_IOTRACE "ENABLE_IOTRACE", #endif +#if SQLITE_ENABLE_JSON1 + "ENABLE_JSON1", +#endif #if SQLITE_ENABLE_LOAD_EXTENSION "ENABLE_LOAD_EXTENSION", #endif |