diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 14:42:15 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:09 +0000 |
commit | 175705b971c8dc5fad47f84d2d9e780316fc5503 (patch) | |
tree | fc627a305d679f136ad821f976bfd69f9bbc631f /gnu | |
parent | ddd4ceeeb3700458a7d8505bdfff482e2d9a3dbf (diff) | |
download | guix-175705b971c8dc5fad47f84d2d9e780316fc5503.tar.gz guix-175705b971c8dc5fad47f84d2d9e780316fc5503.zip |
gnu: libxxf85vm: Add --disable-malloc0-returnsnull when necessary.
* gnu/packages/xorg.scm
(libxxf86vm)[arguments]<#:configure-flags>: Add malloc0-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 5d325f34eb..235ff184f9 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5301,7 +5301,7 @@ new API's in libXft, or the legacy API's in libX11.") "0mydhlyn72i7brjwypsqrpkls3nm6vxw0li8b2nw0caz7kwjgvmg")))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--disable-static"))) + `(#:configure-flags '("--disable-static" ,@(malloc0-flags)))) (propagated-inputs `(("libxext" ,libxext) ("xorgproto" ,xorgproto))) |