guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/29: gnu: sqlite: Enable FTS3 support.


From: guix-commits
Subject: 02/29: gnu: sqlite: Enable FTS3 support.
Date: Sat, 9 Feb 2019 15:55:21 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 46d5a7e33d672d302c88292a9c297a9823f67a2c
Author: Marius Bakke <address@hidden>
Date:   Sat Feb 9 19:37:33 2019 +0100

    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.
---
 gnu/packages/sqlite.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm
index e6beef6..caa98c0 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/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]