mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: libxrender: Do not build static libraries.
* gnu/packages/xorg.scm (libxrender)[arguments]: Add "--disable-static" in #:configure-flags.
This commit is contained in:
parent
101be25e7d
commit
2f9b757677
1 changed files with 5 additions and 5 deletions
|
@ -4670,13 +4670,13 @@ (define-public libxrender
|
|||
(base32
|
||||
"0j89cnb06g8x79wmmnwzykgkkfdhin9j7hjpvsxwlr3fz1wmjvf0"))))
|
||||
(build-system gnu-build-system)
|
||||
;; Disable zero malloc check that fails when cross-compiling.
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
,@(if (%current-target-system)
|
||||
'("--disable-malloc0returnsnull")
|
||||
'()))))
|
||||
(list "--disable-static"
|
||||
;; Disable zero malloc check that fails when cross-compiling.
|
||||
,@(if (%current-target-system)
|
||||
'("--disable-malloc0returnsnull")
|
||||
'()))))
|
||||
(propagated-inputs
|
||||
`(("xorgproto" ,xorgproto)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue