gnu: zstd: Disable unrelated format support.

* gnu/packages/compression.scm (zstd)[arguments]: Add HAVE_LZMA=0 to
master
Tobias Geerinckx-Rice 2017-12-21 17:44:03 +01:00
parent 5308f15b43
commit f45e314e19
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 1 deletions

View File

@ -1609,7 +1609,13 @@ or junctions, and always follows hard links.")
(delete 'configure)) ; no configure script
#:make-flags
(list "CC=gcc"
(string-append "PREFIX=" (assoc-ref %outputs "out")))
(string-append "PREFIX=" (assoc-ref %outputs "out"))
;; Skip auto-detection of, and creating a dependency on, the build
;; environment's xz for what amounts to a dubious feature anyway.
"HAVE_LZMA=0"
;; Not currently detected, but be explicit & avoid surprises later.
"HAVE_LZ4=0"
"HAVE_ZLIB=0")
#:test-target "test"))
(home-page "http://zstd.net/")
(synopsis "Zstandard real-time compression algorithm")