From e1cc6137514c1e002b82ec48c3a5e260937ceeb1 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 17 Aug 2018 13:43:04 -0400 Subject: [PATCH] gnu: gst-plugins-base: Don't build with Opus for 32-bit systems. Fixes and . * gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Exclude opus when building for 32-bit systems. --- gnu/packages/gstreamer.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 951ca93fb..4477d2f86 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015, 2016 Sou Bunnbu ;;; Copyright © 2015, 2018 Mark H Weaver ;;; Copyright © 2016, 2017 Efraim Flashner -;;; Copyright © 2016 Leo Famulari +;;; Copyright © 2016, 2018 Leo Famulari ;;; Copyright © 2017 Ricardo Wurmus ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; @@ -167,7 +167,6 @@ This package provides the core library and elements.") ("orc" ,orc))) ;required by gstreamer-audio-1.0.pc (inputs `(("cdparanoia" ,cdparanoia) - ("opus" ,opus) ("pango" ,pango) ("libogg" ,libogg) ("libtheora" ,libtheora) @@ -176,7 +175,12 @@ This package provides the core library and elements.") ("zlib" ,zlib) ("libXext" ,libxext) ("libxv" ,libxv) - ("alsa-lib" ,alsa-lib))) + ("alsa-lib" ,alsa-lib) + ;; XXX Don't build with opus on 32-bit systems: + ;; + ,@(if (target-64bit?) + `(("opus" ,opus)) + '()))) (native-inputs `(("pkg-config" ,pkg-config) ("glib:bin" ,glib "bin") -- 2.18.0