Skip to content

Commit cc455f7

Browse files
committed
json1 is now included by defalt, don't include it explicitly
https://www.sqlite.org/json1.html
1 parent 4ab923e commit cc455f7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Instructions:
5252

5353
## Compiling SQLite with different options
5454

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`:
5656

5757
``` diff
5858
CFLAGS = \
@@ -62,6 +62,5 @@ CFLAGS = \
6262
-DSQLITE_ENABLE_FTS3 \
6363
-DSQLITE_ENABLE_FTS3_PARENTHESIS \
6464
+ -DSQLITE_ENABLE_FTS5 \
65-
+ -DSQLITE_ENABLE_JSON1 \
6665
-DSQLITE_THREADSAFE=0
6766
```

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ SQLITE_COMPILATION_FLAGS = \
2323
-DSQLITE_DISABLE_LFS \
2424
-DSQLITE_ENABLE_FTS3 \
2525
-DSQLITE_ENABLE_FTS3_PARENTHESIS \
26-
-DSQLITE_ENABLE_JSON1 \
2726
-DSQLITE_THREADSAFE=0 \
2827
-DSQLITE_ENABLE_NORMALIZE
2928

0 commit comments

Comments
 (0)