File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Instructions:
52
52
53
53
## Compiling SQLite with different options
54
54
55
- In order to enable extensions like JSON1 or FTS5, change the CFLAGS in the [ Makefile] ( Makefile ) and run ` npm run rebuild ` :
55
+ In order to enable extensions like FTS5, change the CFLAGS in the [ Makefile] ( Makefile ) and run ` npm run rebuild ` :
56
56
57
57
``` diff
58
58
CFLAGS = \
@@ -62,6 +62,5 @@ CFLAGS = \
62
62
-DSQLITE_ENABLE_FTS3 \
63
63
-DSQLITE_ENABLE_FTS3_PARENTHESIS \
64
64
+ -DSQLITE_ENABLE_FTS5 \
65
- + -DSQLITE_ENABLE_JSON1 \
66
65
-DSQLITE_THREADSAFE=0
67
66
```
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ SQLITE_COMPILATION_FLAGS = \
23
23
-DSQLITE_DISABLE_LFS \
24
24
-DSQLITE_ENABLE_FTS3 \
25
25
-DSQLITE_ENABLE_FTS3_PARENTHESIS \
26
- -DSQLITE_ENABLE_JSON1 \
27
26
-DSQLITE_THREADSAFE=0 \
28
27
-DSQLITE_ENABLE_NORMALIZE
29
28
You can’t perform that action at this time.
0 commit comments