guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: sqlite: Enable DBSTAT_VTAB.


From: David Craven
Subject: 01/01: gnu: sqlite: Enable DBSTAT_VTAB.
Date: Thu, 1 Sep 2016 21:01:09 +0000 (UTC)

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

commit 73dc727ec8d2994aed2f011f89dbd89591ff35a8
Author: David Craven <address@hidden>
Date:   Wed Aug 31 01:02:41 2016 +0200

    gnu: sqlite: Enable DBSTAT_VTAB.
    
    * gnu/packages/databases.scm (sqlite)[arguments]: Enable configure-flag
      -DSQLITE_ENABLE_DBSTAT_VTAB.
---
 gnu/packages/databases.scm |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index a04c375..ce51d28 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -520,10 +520,12 @@ for example from a shell script.")
    (inputs `(("readline" ,readline)))
    (arguments
     `(#:configure-flags
-      ;; Add -DSQLITE_SECURE_DELETE and -DSQLITE_ENABLE_UNLOCK_NOTIFY to
-      ;; CFLAGS.  GNU Icecat will refuse to use the system SQLite unless these
-      ;; options are enabled.
-      '("CFLAGS=-O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY")))
+      ;; 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.
+      (list (string-append "CFLAGS=-O2 -DSQLITE_SECURE_DELETE "
+                           "-DSQLITE_ENABLE_UNLOCK_NOTIFY "
+                           "-DSQLITE_ENABLE_DBSTAT_VTAB"))))
    (home-page "http://www.sqlite.org/";)
    (synopsis "The SQLite database management system")
    (description



reply via email to

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