mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ucl: Build shared library instead of static.
* gnu/packages/compression.scm (ucl)[arguments]: Add "--enable-shared" and "--disable-static" in #:configure-flags.
This commit is contained in:
parent
01c8b90b7b
commit
41c2744463
1 changed files with 2 additions and 1 deletions
|
@ -1903,7 +1903,8 @@ (define-public ucl
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(;; UCL 1.03 fails to build with newer C standards.
|
||||
#:configure-flags '("CFLAGS=-std=gnu90")))
|
||||
#:configure-flags '("CFLAGS=-std=gnu90"
|
||||
"--enable-shared" "--disable-static")))
|
||||
(home-page "https://www.oberhumer.com/opensource/ucl/")
|
||||
(synopsis "Portable lossless data compression library")
|
||||
(description "UCL implements a number of compression algorithms that
|
||||
|
|
Loading…
Reference in a new issue