diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-09-23 23:49:18 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-27 18:36:00 +0000 |
commit | 4b339c7e3d43fb6f742a391f55908bd796b94ac7 (patch) | |
tree | bc068a708852451974547e765b1c9269d335b496 | |
parent | afdeef0dcbb41b64f3b948d0a76c0a19c2226067 (diff) | |
download | guix-4b339c7e3d43fb6f742a391f55908bd796b94ac7.tar.gz guix-4b339c7e3d43fb6f742a391f55908bd796b94ac7.zip |
gnu: libxv: Pass --disable-malloc0returnsnull when cross-compiling.
This fixes a configure error when cross-compiling and doesn't
cause any rebuilds.
* gnu/packages/xorg.scm (libxv)[arguments]<#:configure-flags>:
Add malloc0flags.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-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 f3e9d93ba7..f53962d618 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -4959,7 +4959,7 @@ protocol and arbitrary X extension protocol.") "125hn06bd3d8y97hm2pbf5j55gg4r2hpd3ifad651i4sr7m16v6j")))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--disable-static"))) + `(#:configure-flags '(,@(malloc0-flags) "--disable-static"))) (propagated-inputs `(("xorgproto" ,xorgproto))) (inputs |