guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: gst-plugins-base: Do not propagate Orc on armhf systems.


From: guix-commits
Subject: 05/07: gnu: gst-plugins-base: Do not propagate Orc on armhf systems.
Date: Sun, 12 Jan 2020 14:34:13 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit cc1b2b3e1366d254c653deb0af6687bcfb6f0ec1
Author: Marius Bakke <address@hidden>
AuthorDate: Sun Jan 12 19:13:03 2020 +0100

    gnu: gst-plugins-base: Do not propagate Orc on armhf systems.
    
    * gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]:
    Conditionally add ORC.
---
 gnu/packages/gstreamer.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 323e3cc..63b4179 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2016, 2018 Leo Famulari <address@hidden>
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
-;;; Copyright © 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2019, 2020 Marius Bakke <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -168,7 +168,14 @@ This package provides the core library and elements.")
     (propagated-inputs
      `(("glib" ,glib)              ;required by gstreamer-sdp-1.0.pc
        ("gstreamer" ,gstreamer)    ;required by gstreamer-plugins-base-1.0.pc
-       ("orc" ,orc)))              ;required by gstreamer-audio-1.0.pc
+
+       ;; XXX: Do not enable Orc optimizations on ARM systems because
+       ;; it leads to two test failures.
+       ;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/issues/683
+       ,@(if (string-prefix? "arm" (or (%current-target-system)
+                                       (%current-system)))
+             '()
+             `(("orc" ,orc)))))         ;required by gstreamer-audio-1.0.pc
     (inputs
      `(("cdparanoia" ,cdparanoia)
        ("pango" ,pango)



reply via email to

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