diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2007-09-02 19:21:35 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2007-09-02 19:21:35 +0000 |
commit | 0aa0424e1325f8154966b9a29111119319839690 (patch) | |
tree | 8bba3e8bfb69b60a70127b619557c2545743a6ac /media-libs/gstreamer/files | |
parent | Deprecate eclass unused for ages (diff) | |
download | historical-0aa0424e1325f8154966b9a29111119319839690.tar.gz historical-0aa0424e1325f8154966b9a29111119319839690.tar.bz2 historical-0aa0424e1325f8154966b9a29111119319839690.zip |
Include a fix from upstream, doesn't fix anything it tree but allows installation of plugins from gst CVS against 0.10.14 core.
Package-Manager: portage-2.1.3.7
Diffstat (limited to 'media-libs/gstreamer/files')
-rw-r--r-- | media-libs/gstreamer/files/gstreamer-0.10.14-gstcaps.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/media-libs/gstreamer/files/gstreamer-0.10.14-gstcaps.patch b/media-libs/gstreamer/files/gstreamer-0.10.14-gstcaps.patch new file mode 100644 index 000000000000..f2eae496de45 --- /dev/null +++ b/media-libs/gstreamer/files/gstreamer-0.10.14-gstcaps.patch @@ -0,0 +1,12 @@ +diff -ur gstreamer-0.10.14.orig/gst/gstcaps.c gstreamer-0.10.14/gst/gstcaps.c +--- gstreamer-0.10.14.orig/gst/gstcaps.c 2007-02-28 16:42:41.000000000 +0200 ++++ gstreamer-0.10.14/gst/gstcaps.c 2007-09-02 22:08:26.000000000 +0300 +@@ -895,7 +895,7 @@ + GstStructure *structure; + + g_return_if_fail (GST_IS_CAPS (caps)); +- g_return_if_fail (caps->structs->len != 1); ++ g_return_if_fail (caps->structs->len == 1); + g_return_if_fail (IS_WRITABLE (caps)); + + structure = gst_caps_get_structure (caps, 0); |