diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-02-09 19:37:33 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-02-09 21:27:23 +0100 |
commit | 46d5a7e33d672d302c88292a9c297a9823f67a2c (patch) | |
tree | ccad9851411ee49a3748ba642d1a7feab8ac9fd7 | |
parent | f73f2e17d9f9e43c6d8842bce497006851537934 (diff) | |
download | guix-46d5a7e33d672d302c88292a9c297a9823f67a2c.tar guix-46d5a7e33d672d302c88292a9c297a9823f67a2c.tar.gz |
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.
-rw-r--r-- | gnu/packages/sqlite.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm index e6beef63b8..caa98c0861 100644 --- a/gnu/packages/sqlite.scm +++ b/gnu/packages/sqlite.scm @@ -67,10 +67,12 @@ (inputs `(("readline" ,readline))) (arguments `(#:configure-flags - ;; Add -DSQLITE_SECURE_DELETE, -DSQLITE_ENABLE_UNLOCK_NOTIFY and - ;; -DSQLITE_ENABLE_DBSTAT_VTAB to CFLAGS. GNU Icecat will refuse - ;; to use the system SQLite unless these options are enabled. + ;; Add -DSQLITE_SECURE_DELETE, -DSQLITE_ENABLE_FTS3, + ;; -DSQLITE_ENABLE_UNLOCK_NOTIFY and -DSQLITE_ENABLE_DBSTAT_VTAB + ;; to CFLAGS. GNU Icecat will refuse to use the system SQLite + ;; unless these options are enabled. (list (string-append "CFLAGS=-O2 -DSQLITE_SECURE_DELETE " + "-DSQLITE_ENABLE_FTS3 " "-DSQLITE_ENABLE_UNLOCK_NOTIFY " "-DSQLITE_ENABLE_DBSTAT_VTAB")))) (home-page "https://www.sqlite.org/") |