gnu: sqlite: Enable FTS3 support.
This is no longer enabled by default since 3.25.0. * gnu/packages/sqlite.scm (sqlite)[arguments]: Add "-DSQLITE_ENABLE_FTS3" to #:configure-flags.
This commit is contained in:
parent
f73f2e17d9
commit
46d5a7e33d
|
@ -67,10 +67,12 @@
|
||||||
(inputs `(("readline" ,readline)))
|
(inputs `(("readline" ,readline)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
;; Add -DSQLITE_SECURE_DELETE, -DSQLITE_ENABLE_UNLOCK_NOTIFY and
|
;; Add -DSQLITE_SECURE_DELETE, -DSQLITE_ENABLE_FTS3,
|
||||||
;; -DSQLITE_ENABLE_DBSTAT_VTAB to CFLAGS. GNU Icecat will refuse
|
;; -DSQLITE_ENABLE_UNLOCK_NOTIFY and -DSQLITE_ENABLE_DBSTAT_VTAB
|
||||||
;; to use the system SQLite unless these options are enabled.
|
;; to CFLAGS. GNU Icecat will refuse to use the system SQLite
|
||||||
|
;; unless these options are enabled.
|
||||||
(list (string-append "CFLAGS=-O2 -DSQLITE_SECURE_DELETE "
|
(list (string-append "CFLAGS=-O2 -DSQLITE_SECURE_DELETE "
|
||||||
|
"-DSQLITE_ENABLE_FTS3 "
|
||||||
"-DSQLITE_ENABLE_UNLOCK_NOTIFY "
|
"-DSQLITE_ENABLE_UNLOCK_NOTIFY "
|
||||||
"-DSQLITE_ENABLE_DBSTAT_VTAB"))))
|
"-DSQLITE_ENABLE_DBSTAT_VTAB"))))
|
||||||
(home-page "https://www.sqlite.org/")
|
(home-page "https://www.sqlite.org/")
|
||||||
|
|
Loading…
Reference in New Issue