mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: sqlite: Add -DSQLITE_ENABLE_UNLOCK_NOTIFY to CFLAGS.
* gnu/packages/databases.scm (sqlite)[arguments]: Add -DSQLITE_ENABLE_UNLOCK_NOTIFY to CFLAGS.
This commit is contained in:
parent
266d26df87
commit
49689377a3
1 changed files with 6 additions and 3 deletions
|
@ -236,9 +236,12 @@ (define-public sqlite
|
||||||
"04dl53iv5q0srv4jcgjfzsrdzkq6dg1sgmlmpw9lrd4xrmj6jmvl"))))
|
"04dl53iv5q0srv4jcgjfzsrdzkq6dg1sgmlmpw9lrd4xrmj6jmvl"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("readline" ,readline)))
|
(inputs `(("readline" ,readline)))
|
||||||
;; Add -DSQLITE_SECURE_DELETE. GNU Icecat will refuse to use the system
|
(arguments
|
||||||
;; SQLite unless this option is enabled.
|
`(#:configure-flags
|
||||||
(arguments `(#:configure-flags '("CFLAGS=-O2 -DSQLITE_SECURE_DELETE")))
|
;; 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")))
|
||||||
(home-page "http://www.sqlite.org/")
|
(home-page "http://www.sqlite.org/")
|
||||||
(synopsis "The SQLite database management system")
|
(synopsis "The SQLite database management system")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue