diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-11-15 05:18:54 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-11-15 05:18:54 +0800 |
commit | 3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8 (patch) | |
tree | 80685c41efbde01a6499f13818ecbf0899dd2ec3 /multimedia/gstreamer80/files | |
parent | 409166cba64d1a710388facc222322a25460b9b0 (diff) | |
download | marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar.gz marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar.bz2 marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar.lz marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar.xz marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.tar.zst marcuscom-ports-3bc51ee56f72f66ca82ec04110c20b7dd5d5d5c8.zip |
Update to 0.7.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1332 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer80/files')
5 files changed, 111 insertions, 0 deletions
diff --git a/multimedia/gstreamer80/files/patch-configure b/multimedia/gstreamer80/files/patch-configure new file mode 100644 index 000000000..11e54cb76 --- /dev/null +++ b/multimedia/gstreamer80/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig Sat Sep 27 14:13:57 2003 ++++ configure Sat Sep 27 14:18:37 2003 +@@ -8173,7 +8173,7 @@ + echo $ECHO_N "checking to see if compiler understands -Werror... $ECHO_C" >&6 + + save_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -Werror" ++ CFLAGS="$CFLAGS" + + cat >conftest.$ac_ext <<_ACEOF + #line $LINENO "configure" +@@ -8214,7 +8214,7 @@ + CFLAGS="$save_CFLAGS" + + if test "X$flag_ok" = Xyes ; then +- GST_ERROR="$GST_ERROR -Werror" ++ GST_ERROR="$GST_ERROR" + true + else + +@@ -9607,7 +9607,7 @@ + : + fi + +-if test "$ac_cv_check_mcsc" == "yes"; then ++if test "$ac_cv_check_mcsc" = "yes"; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_MAKECONTEXT $HAVE_MAKECONTEXT diff --git a/multimedia/gstreamer80/files/patch-gst::cothreads.c b/multimedia/gstreamer80/files/patch-gst::cothreads.c new file mode 100644 index 000000000..3519fb0e7 --- /dev/null +++ b/multimedia/gstreamer80/files/patch-gst::cothreads.c @@ -0,0 +1,20 @@ +--- 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 + +-#define STACK_SIZE 0x200000 ++#define STACK_SIZE 0x100000 + + #define COTHREAD_MAGIC_NUMBER 0xabcdef + diff --git a/multimedia/gstreamer80/files/patch-gst::gstthreaddummy.c b/multimedia/gstreamer80/files/patch-gst::gstthreaddummy.c new file mode 100644 index 000000000..71bace480 --- /dev/null +++ b/multimedia/gstreamer80/files/patch-gst::gstthreaddummy.c @@ -0,0 +1,10 @@ +--- gst/gstthreaddummy.c.orig Mon Jun 30 14:31:13 2003 ++++ gst/gstthreaddummy.c Fri Nov 14 15:36:22 2003 +@@ -17,6 +17,7 @@ + * Boston, MA 02111-1307, USA. + */ + ++#include <sys/types.h> + #include <unistd.h> + #include <sys/time.h> + #include <glib.h> diff --git a/multimedia/gstreamer80/files/patch-gst_parse_lex._gst_parse_yy.c b/multimedia/gstreamer80/files/patch-gst_parse_lex._gst_parse_yy.c new file mode 100644 index 000000000..b1ade2797 --- /dev/null +++ b/multimedia/gstreamer80/files/patch-gst_parse_lex._gst_parse_yy.c @@ -0,0 +1,10 @@ +--- gst/parse/lex._gst_parse_yy.c.orig Fri Nov 14 15:41:20 2003 ++++ gst/parse/lex._gst_parse_yy.c Fri Nov 14 15:41:28 2003 +@@ -20,7 +20,6 @@ + #include <string.h> + #include <errno.h> + #include <stdlib.h> +-#include <stdint.h> /* May break IA64 test-noansi-r */ + + /* end standard C headers. */ + diff --git a/multimedia/gstreamer80/files/patch-ltmain.sh b/multimedia/gstreamer80/files/patch-ltmain.sh new file mode 100644 index 000000000..1c2fba5d5 --- /dev/null +++ b/multimedia/gstreamer80/files/patch-ltmain.sh @@ -0,0 +1,42 @@ +--- ltmain.sh.orig Fri Sep 13 15:38:11 2002 ++++ ltmain.sh Fri Oct 11 01:44:24 2002 +@@ -1073,8 +1073,16 @@ + continue + ;; + ++ -pthread) ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; ++ + -module) + module=yes ++ build_old_libs=no + continue + ;; + +@@ -2502,6 +2510,9 @@ + *-*-openbsd*) + # Do not include libc due to us having libc/libc_r. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test $build_libtool_need_lc = "yes"; then +@@ -4286,10 +4297,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |