mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -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"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("readline" ,readline)))
|
||||
;; Add -DSQLITE_SECURE_DELETE. GNU Icecat will refuse to use the system
|
||||
;; SQLite unless this option is enabled.
|
||||
(arguments `(#:configure-flags '("CFLAGS=-O2 -DSQLITE_SECURE_DELETE")))
|
||||
(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")))
|
||||
(home-page "http://www.sqlite.org/")
|
||||
(synopsis "The SQLite database management system")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue