diff options
author | marcus <marcus@FreeBSD.org> | 2003-02-06 02:20:43 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-02-06 02:20:43 +0800 |
commit | 31b01c7887550f2560e790fb306b68a333bb7b92 (patch) | |
tree | 7fa8111754676780bf9999445c5d2bbc5d86c48e /multimedia/gstreamer/files | |
parent | c3af1fefa3ff80ac8a06b0b6454818866bef3838 (diff) | |
download | freebsd-ports-gnome-31b01c7887550f2560e790fb306b68a333bb7b92.tar.gz freebsd-ports-gnome-31b01c7887550f2560e790fb306b68a333bb7b92.tar.zst freebsd-ports-gnome-31b01c7887550f2560e790fb306b68a333bb7b92.zip |
* Update to 0.6.0
* Fix audiofile detection
* Small CC safeness fixes
* Add Hermes support
This work is the product of colaboration between lioux and myself.
Approved by: maintainer
Diffstat (limited to 'multimedia/gstreamer/files')
-rw-r--r-- | multimedia/gstreamer/files/patch-configure | 15 | ||||
-rw-r--r-- | multimedia/gstreamer/files/patch-gst::cothreads.c | 20 |
2 files changed, 24 insertions, 11 deletions
diff --git a/multimedia/gstreamer/files/patch-configure b/multimedia/gstreamer/files/patch-configure index 4e3e5d1953d8..b3935c7cb3df 100644 --- a/multimedia/gstreamer/files/patch-configure +++ b/multimedia/gstreamer/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig Wed Jul 10 16:32:49 2002 -+++ configure Wed Jul 10 16:33:12 2002 -@@ -6620,6 +6620,7 @@ +--- configure.orig Wed Jan 22 09:17:40 2003 ++++ configure Wed Jan 29 14:49:56 2003 +@@ -7520,6 +7520,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" @@ -8,3 +8,12 @@ # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -7712,7 +7713,7 @@ + if test "x$COMPILER" = "xforte"; then + GST_ERROR= + else +- if test "x$GST_CVS"="xyes"; then ++ if test "x$GST_CVS" = "xyes"; then + GST_ERROR="-Wall -Werror" + else + GST_ERROR="-Wall" diff --git a/multimedia/gstreamer/files/patch-gst::cothreads.c b/multimedia/gstreamer/files/patch-gst::cothreads.c index aed13b1a7891..3519fb0e7e01 100644 --- a/multimedia/gstreamer/files/patch-gst::cothreads.c +++ b/multimedia/gstreamer/files/patch-gst::cothreads.c @@ -1,6 +1,15 @@ ---- gst/cothreads.c.orig Wed Nov 13 22:59:21 2002 -+++ gst/cothreads.c Wed Nov 13 22:59:38 2002 -@@ -41,11 +41,11 @@ +--- gst/cothreads.c.orig Sat Feb 1 19:09:00 2003 ++++ gst/cothreads.c Mon Feb 3 10:57:44 2003 +@@ -41,12 +41,16 @@ + #include <ucontext.h> + #endif + ++#ifdef HAVE_MAKECONTEXT ++#include <ucontext.h> ++#endif ++ + /* older glibc's have MAP_ANON instead of MAP_ANONYMOUS */ + #ifndef MAP_ANONYMOUS #define MAP_ANONYMOUS MAP_ANON #endif @@ -9,8 +18,3 @@ #define COTHREAD_MAGIC_NUMBER 0xabcdef --#define COTHREAD_MAXTHREADS 16 -+#define COTHREAD_MAXTHREADS 8 - #define COTHREAD_STACKSIZE (STACK_SIZE/COTHREAD_MAXTHREADS) - - static void cothread_destroy (cothread_state *thread); |