gnu: ucl: Build shared library instead of static.
* gnu/packages/compression.scm (ucl)[arguments]: Add "--enable-shared" and "--disable-static" in #:configure-flags.master
parent
01c8b90b7b
commit
41c2744463
|
@ -1903,7 +1903,8 @@ The specification of the Brotli Compressed Data Format is defined in RFC 7932.")
|
|||
(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
|
||||
|
|
Reference in New Issue