Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cc455f7

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

File tree

2 files changed

+1
-3
lines changed
Filter options

2 files changed

+1
-3
lines changed

‎CONTRIBUTING.md

Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-2Lines changed: 1 addition & 2 deletions
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

Copy file name to clipboardExpand all lines: Makefile
-1Lines changed: 0 additions & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.