unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: Marcel van der Boom <marcel@van-der-boom.nl>
To: 57134@debbugs.gnu.org
Cc: Marcel van der Boom <marcel@van-der-boom.nl>
Subject: bug#57134: [PATCH] FIX: Skip `aalib' input on target ppc64le
Date: Mon, 16 Jan 2023 12:19:28 +0100	[thread overview]
Message-ID: <83a8cd102e78b7b6aa3c36de9cb9bb16ec9d484f.1673867683.git.marcel@van-der-boom.nl> (raw)
In-Reply-To: <87fsi3cko3.fsf@van-der-boom.nl>

	* gstreamer.scm (gst-plugins-good):
	skip aalib input on ppc64le

Linker errors out for unknown reasons. The ascii art is imho not important
enough to skip the whole package from being included for ppc64le.
---
 gnu/packages/gstreamer.scm | 75 ++++++++++++++++++++------------------
 1 file changed, 39 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 916ab2e990..156ef4eda4 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -687,42 +687,45 @@ (define libsoup
            python-wrapper
            xorg-server-for-tests))
     (inputs
-     (list aalib
-           bzip2
-           cairo
-           flac
-           (librsvg-for-system)
-           glib
-           glib-networking
-           glu
-           gtk+
-           jack-2
-           lame
-           libavc1394
-           libcaca
-           libdv
-           libgudev
-           libiec61883
-           libjpeg-turbo
-           libpng
-           libshout
-           libsoup
-           libvpx
-           libx11
-           libxdamage
-           libxfixes
-           libxext
-           libxshmfence
-           mesa
-           mpg123
-           orc
-           pulseaudio
-           speex
-           taglib
-           twolame
-           v4l-utils
-           wavpack
-           zlib))
+     (append
+      ;; linking aalib on ppc64le errors out;
+      ;; ascii isn't that important to skip the whole package for it.
+      (if (not target-ppc64le?) (list aalib) '())
+      (list bzip2
+            cairo
+            flac
+            (librsvg-for-system)
+            glib
+            glib-networking
+            glu
+            gtk+
+            jack-2
+            lame
+            libavc1394
+            libcaca
+            libdv
+            libgudev
+            libiec61883
+            libjpeg-turbo
+            libpng
+            libshout
+            libsoup
+            libvpx
+            libx11
+            libxdamage
+            libxfixes
+            libxext
+            libxshmfence
+            mesa
+            mpg123
+            orc
+            pulseaudio
+            speex
+            taglib
+            twolame
+            v4l-utils
+            wavpack
+            zlib)))
     (propagated-inputs
      (list gstreamer gst-plugins-base))
     (synopsis "GStreamer plugins and helper libraries")
-- 
2.38.1





  reply	other threads:[~2023-01-16 11:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-11  7:13 bug#57134: powerpc64le: gst-plugins-good build link error on aalib (libgstaasink.so) Marcel van der Boom
2023-01-16 11:19 ` Marcel van der Boom [this message]
2023-08-31  4:49   ` bug#57134: [PATCH] " Maxim Cournoyer
2023-04-24  7:51 ` bug#57134: (no subject) Marcel van der Boom
2023-04-24 12:28   ` Maxim Cournoyer
     [not found]     ` <handler.s.C.16823393206810.transcript@debbugs.gnu.org>
2023-04-24 13:37       ` bug#57134: Closing (2nd attempt) Maxim Cournoyer
2023-04-24 14:11 ` bug#57134: (no subject) Marcel van der Boom
2023-09-26 11:17 ` bug#57134: [PATCH] powerpc64le: gst-plugins-good build link error on aalib (libgstaasink.so) Marcel van der Boom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=83a8cd102e78b7b6aa3c36de9cb9bb16ec9d484f.1673867683.git.marcel@van-der-boom.nl \
    --to=marcel@van-der-boom.nl \
    --cc=57134@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).