Thu Oct 29 12:38:06 2020 UTC ()
sqlite3: Turn on extensions that default-on using the configure script

Includes json1 and fts5, which are both needed by various things in pkgsrc


(nia)
diff -r1.7 -r1.8 src/external/public-domain/sqlite/Makefile.inc

cvs diff -r1.7 -r1.8 src/external/public-domain/sqlite/Makefile.inc (expand / switch to context diff)
--- src/external/public-domain/sqlite/Makefile.inc 2016/10/13 18:11:19 1.7
+++ src/external/public-domain/sqlite/Makefile.inc 2020/10/29 12:38:06 1.8
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.7 2016/10/13 18:11:19 martin Exp $
+# $NetBSD: Makefile.inc,v 1.8 2020/10/29 12:38:06 nia Exp $
 
 WARNS=		2
 
@@ -18,6 +18,10 @@
 		-DSQLITE_ENABLE_COLUMN_METADATA \
 		-DSQLITE_ENABLE_FTS3_PARENTHESIS \
 		-DSQLITE_ENABLE_FTS4 \
+		-DSQLITE_ENABLE_FTS5 \
+		-DSQLITE_ENABLE_JSON1 \
+		-DSQLITE_ENABLE_RTREE \
+		-DSQLITE_ENABLE_GEOPOLY \
 		-DSQLITE_ENABLE_LOAD_EXTENSION \
 		-DSQLITE_ENABLE_UNLOCK_NOTIFY \
 		-DSQLITE_HAVE_ISNAN \