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 @@ The specification of the Brotli Compressed Data Format is defined in RFC 7932.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; UCL 1.03 fails to build with newer C standards.
|
`(;; 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/")
|
(home-page "https://www.oberhumer.com/opensource/ucl/")
|
||||||
(synopsis "Portable lossless data compression library")
|
(synopsis "Portable lossless data compression library")
|
||||||
(description "UCL implements a number of compression algorithms that
|
(description "UCL implements a number of compression algorithms that
|
||||||
|
|
Reference in a new issue