efraim pushed a commit to branch staging
in repository guix.

commit 3fdeb158d81532627ba08821baeef21ae77db32a
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Sep 1 16:04:12 2022 +0300

    gnu: gst-plugins-base: Build with orc on all platforms.
    
    * gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]:
    Build with orc on all platforms.
---
 gnu/packages/gstreamer.scm | 22 ++++++++--------------
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index fc3f3eaaa6..d3c177ddbf 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2014 John Darrington <[email protected]>
 ;;; Copyright © 2015, 2016 Sou Bunnbu <[email protected]>
 ;;; Copyright © 2015, 2018 Mark H Weaver <[email protected]>
-;;; Copyright © 2016, 2017 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2022 Efraim Flashner <[email protected]>
 ;;; Copyright © 2016, 2018 Leo Famulari <[email protected]>
 ;;; Copyright © 2017 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <[email protected]>
@@ -532,19 +532,13 @@ This package provides the core library and elements.")
         "17rw8wj1x1bg153m9z76pdvgz5k93m3riyalfpzq00x7h7fv6c3y"))))
     (build-system meson-build-system)
     (propagated-inputs
-     (cons* glib                    ;required by gstreamer-sdp-1.0.pc
-            gstreamer               ;required by gstreamer-plugins-base-1.0.pc
-            libgudev                ;required by gstreamer-gl-1.0.pc
-            ;; wayland-client.h is referred to in
-            ;; include/gstreamer-1.0/gst/gl/wayland/gstgldisplay_wayland.h
-            wayland
-            ;; 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)))
-                '()
-                (list orc))))           ;required by gstreamer-audio-1.0.pc
+     (list glib                     ;required by gstreamer-sdp-1.0.pc
+           gstreamer                ;required by gstreamer-plugins-base-1.0.pc
+           libgudev                 ;required by gstreamer-gl-1.0.pc
+           ;; wayland-client.h is referred to in
+           ;; include/gstreamer-1.0/gst/gl/wayland/gstgldisplay_wayland.h
+           wayland
+           orc))                    ;required by gstreamer-audio-1.0.pc
     (inputs
      ;; TODO: Add libvorbisidec
      (list alsa-lib

Reply via email to