diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-11-09 17:31:59 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-11-09 17:31:59 +0800 |
commit | 6d98ddb6521346625447515303594910195590a6 (patch) | |
tree | 0cd97d2e1c104451e653fbc74fd9c9eea1a7982d /multimedia/gstreamer/files | |
parent | 8fb2032f7b966e51c1b98b77658f1d0c63d1882e (diff) | |
download | marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar.gz marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar.bz2 marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar.lz marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar.xz marcuscom-ports-6d98ddb6521346625447515303594910195590a6.tar.zst marcuscom-ports-6d98ddb6521346625447515303594910195590a6.zip |
Update to 0.10.25.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13202 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer/files')
-rw-r--r-- | multimedia/gstreamer/files/patch-Makefile.in | 18 | ||||
-rw-r--r-- | multimedia/gstreamer/files/patch-gst_gstregistry.c | 11 | ||||
-rw-r--r-- | multimedia/gstreamer/files/patch-plugins_elements_gstfilesrc.c | 13 |
3 files changed, 42 insertions, 0 deletions
diff --git a/multimedia/gstreamer/files/patch-Makefile.in b/multimedia/gstreamer/files/patch-Makefile.in new file mode 100644 index 000000000..fe7d89f4c --- /dev/null +++ b/multimedia/gstreamer/files/patch-Makefile.in @@ -0,0 +1,18 @@ +--- Makefile.in.orig 2009-10-19 00:06:14.000000000 +0200 ++++ Makefile.in 2009-10-19 00:07:47.000000000 +0200 +@@ -397,7 +397,6 @@ aclocaldir = $(datadir)/aclocal + aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 + SUBDIRS = pkgconfig \ + gst libs plugins tools tests \ +- docs \ + po \ + common + +@@ -405,7 +404,6 @@ SUBDIRS = pkgconfig \ + # These are all the possible subdirs + DIST_SUBDIRS = pkgconfig \ + gst libs plugins tools tests \ +- docs \ + po \ + common + diff --git a/multimedia/gstreamer/files/patch-gst_gstregistry.c b/multimedia/gstreamer/files/patch-gst_gstregistry.c new file mode 100644 index 000000000..b2ddff9c7 --- /dev/null +++ b/multimedia/gstreamer/files/patch-gst_gstregistry.c @@ -0,0 +1,11 @@ +--- gst/gstregistry.c.orig 2009-07-14 11:54:05.000000000 +0200 ++++ gst/gstregistry.c 2009-08-05 14:05:20.000000000 +0200 +@@ -896,7 +896,7 @@ gst_registry_scan_path_level (GstRegistr + GST_DEBUG_OBJECT (registry, "mtime %ld != %ld or size %" + G_GINT64_FORMAT " != %" G_GINT64_FORMAT " or external dependency " + "env_vars changed: %d or external dependencies changed: %d", +- plugin->file_mtime, file_status.st_mtime, ++ (glong) plugin->file_mtime, (glong) file_status.st_mtime, + (gint64) plugin->file_size, (gint64) file_status.st_size, + env_vars_changed, deps_changed); + gst_registry_remove_plugin (gst_registry_get_default (), plugin); diff --git a/multimedia/gstreamer/files/patch-plugins_elements_gstfilesrc.c b/multimedia/gstreamer/files/patch-plugins_elements_gstfilesrc.c new file mode 100644 index 000000000..b1513ade7 --- /dev/null +++ b/multimedia/gstreamer/files/patch-plugins_elements_gstfilesrc.c @@ -0,0 +1,13 @@ +--- plugins/elements/gstfilesrc.c.orig 2009-07-14 11:54:05.000000000 +0200 ++++ plugins/elements/gstfilesrc.c 2009-08-05 09:23:45.000000000 +0200 +@@ -585,8 +585,8 @@ gst_file_src_map_region (GstFileSrc * sr + + g_return_val_if_fail (offset >= 0, NULL); + +- GST_LOG_OBJECT (src, "mapping region %08llx+%08lx from file into memory", +- offset, (gulong) size); ++ GST_LOG_OBJECT (src, "mapping region %08lx+%08lx from file into memory", ++ (gulong) offset, (gulong) size); + + mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset); + |