all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andreas Enge <andreas@enge.fr>
To: guix-devel@gnu.org
Subject: Re: Gstreamer
Date: Sat, 17 Oct 2015 22:05:56 +0200	[thread overview]
Message-ID: <20151017200556.GA16217@debian> (raw)
In-Reply-To: <20151017200302.GA16089@debian>

Actually I found the beginning of a patch on my git stash,
if someone wants to start from there:

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm                                                                                                                            
index 0ac9783..a7f9539 100644                                                                                                                                                                   
--- a/gnu/packages/gstreamer.scm                                                                                                                                                                
+++ b/gnu/packages/gstreamer.scm                                                                                                                                                                
@@ -83,7 +83,7 @@ arrays of data.")                                                                                                                                                             
 (define-public gstreamer
   (package
     (name "gstreamer")
-    (version "1.4.5")
+    (version "1.6.0")
     (source
      (origin
       (method url-fetch)
@@ -91,15 +91,24 @@ arrays of data.")
                           version ".tar.xz"))
       (sha256
        (base32
-        "1bmhbhak6i5wmmb6w86jyyv8lax4gdq983la4lk4a0krz6kim020"))))
+        "1k0glfw2m1qpfwp96jqwjzl0kah4zvz9lnk4nz413vxg8xb8ivsj"))))
     (build-system gnu-build-system)
     (outputs '("out" "doc"))
     (arguments
      `(#:make-flags '("CC=gcc") ; for g-ir-scanner.
        #:configure-flags
-       (list (string-append "--with-html-dir="
+       (list "CFLAGS=-std=c99"
+             (string-append "--with-html-dir="
                             (assoc-ref %outputs "doc")
-                            "/share/gtk-doc/html"))))
+                            "/share/gtk-doc/html"))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after
+          'configure 'correct-config-h
+          (lambda _
+            (substitute* "config.h"
+              (("HAVE_DECL_STRSIGNAL 0")
+               "HAVE_DECL_STRSIGNAL 1")))))))
     (propagated-inputs `(("glib" ,glib))) ; required by gstreamer-1.0.pc.
     (native-inputs
      `(("bison" ,bison)

Andreas

  reply	other threads:[~2015-10-17 20:06 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-17 20:03 Gstreamer Andreas Enge
2015-10-17 20:05 ` Andreas Enge [this message]
2015-10-18  1:48 ` Gstreamer iyzsong

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

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

  git send-email \
    --in-reply-to=20151017200556.GA16217@debian \
    --to=andreas@enge.fr \
    --cc=guix-devel@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.