guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: gst-plugins-base: Don't build with Opus for 32-bit systems.


From: Tobias Geerinckx-Rice
Subject: 02/02: gnu: gst-plugins-base: Don't build with Opus for 32-bit systems.
Date: Sat, 18 Aug 2018 07:28:58 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 399c5fafcdb2d0c13ab51e4ab57d451d2c7cb1bd
Author: Leo Famulari <address@hidden>
Date:   Fri Aug 17 13:43:04 2018 -0400

    gnu: gst-plugins-base: Don't build with Opus for 32-bit systems.
    
    Fixes <https://bugs.gnu.org/32360> and <https://bugs.gnu.org/32466>.
    
    * gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Exclude opus
    when building for 32-bit systems.
    
    Signed-off-by: Tobias Geerinckx-Rice <address@hidden>
---
 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 951ca93..d26a4c4 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2015, 2016 Sou Bunnbu <address@hidden>
 ;;; Copyright © 2015, 2018 Mark H Weaver <address@hidden>
 ;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
-;;; Copyright © 2016 Leo Famulari <address@hidden>
+;;; Copyright © 2016, 2018 Leo Famulari <address@hidden>
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
@@ -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:
+       ;; <https://bugs.gnu.org/32360>
+       ,@(if (target-64bit?)
+             `(("opus" ,opus))
+             '())))
     (native-inputs
       `(("pkg-config" ,pkg-config)
         ("glib:bin" ,glib "bin")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]