diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-25 14:40:34 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-20 11:15:08 +0000 |
commit | 2505055c02163c83d43c86792676dc39935b7f3d (patch) | |
tree | e1f46a4d6635d389c45316e10189872daf4a683c | |
parent | 76362337b9f67fbe60de6c9288ab5ca054653d59 (diff) | |
download | guix-2505055c02163c83d43c86792676dc39935b7f3d.tar.gz guix-2505055c02163c83d43c86792676dc39935b7f3d.zip |
gnu: libxinerama: Add --disable-malloc0-returnsnull when necessary.
* gnu/packages/xorg.scm
(libxinerama)[arguments]<#:configure-flags>: Add malloc0-flags.
-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 1eaf95ff31..aedaa1b498 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -4832,7 +4832,7 @@ cannot be adequately worked around on the client side of the wire.") "086p0axqj57nvkaqa6r00dnr9kyrn1m8blgf0zjy25zpxkbxn200")))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--disable-static"))) + `(#:configure-flags '("--disable-static" ,@(malloc0-flags)))) (propagated-inputs `(("xorgproto" ,xorgproto))) (inputs |