diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-08-31 13:38:24 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-08-31 13:38:24 +0800 |
commit | f05fd0cf9c9afd74d0277d4cd21e8727e2251709 (patch) | |
tree | 805c17d724ea474f05331d454ba979db70f1e7bb /multimedia/gstreamer-plugins80/files | |
parent | b4f6518dbd76d1ab9e0e7958ef45637dd049f848 (diff) | |
download | marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar.gz marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar.bz2 marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar.lz marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar.xz marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.tar.zst marcuscom-ports-f05fd0cf9c9afd74d0277d4cd21e8727e2251709.zip |
Add gstreamer-plugins-0.6.3 until it can be added to the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1117 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer-plugins80/files')
3 files changed, 38 insertions, 0 deletions
diff --git a/multimedia/gstreamer-plugins80/files/patch-configure b/multimedia/gstreamer-plugins80/files/patch-configure new file mode 100644 index 000000000..001d56fd6 --- /dev/null +++ b/multimedia/gstreamer-plugins80/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig Thu Jul 11 15:51:47 2002 ++++ configure Thu Jul 11 15:51:57 2002 +@@ -6731,6 +6731,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/multimedia/gstreamer-plugins80/files/patch-ext_a52dec_gsta52dec.c b/multimedia/gstreamer-plugins80/files/patch-ext_a52dec_gsta52dec.c new file mode 100644 index 000000000..05c0e5366 --- /dev/null +++ b/multimedia/gstreamer-plugins80/files/patch-ext_a52dec_gsta52dec.c @@ -0,0 +1,11 @@ +--- ext/a52dec/gsta52dec.c.orig Sun Apr 6 18:58:19 2003 ++++ ext/a52dec/gsta52dec.c Sun Apr 20 13:16:28 2003 +@@ -25,7 +25,7 @@ + + #include <stdlib.h> + +-#ifdef HAVE_STDINT_H ++#if defined(HAVE_STDINT_H) || defined(__FreeBSD__) + #include <stdint.h> + #else + /* (Ronald) hacky... can't include stdint.h because it's not available diff --git a/multimedia/gstreamer-plugins80/files/patch-ffmpeg::simple_idct_alpha.c b/multimedia/gstreamer-plugins80/files/patch-ffmpeg::simple_idct_alpha.c new file mode 100644 index 000000000..8149c3981 --- /dev/null +++ b/multimedia/gstreamer-plugins80/files/patch-ffmpeg::simple_idct_alpha.c @@ -0,0 +1,17 @@ +--- gst-libs/ext/ffmpeg/ffmpeg/libavcodec/alpha/simple_idct_alpha.c.orig Fri Apr 25 22:06:13 2003 ++++ gst-libs/ext/ffmpeg/ffmpeg/libavcodec/alpha/simple_idct_alpha.c Fri Apr 25 23:19:39 2003 +@@ -24,8 +24,14 @@ + * and Falk Hueffner <falk@debian.org> + */ + ++#include <sys/param.h> ++ + #include "asm.h" + #include "../dsputil.h" ++ ++#if defined(__FreeBSD__) && __FreeBSD_version < 500000 ++typedef __int32_t int_fast32_t; ++#endif + + extern void (*put_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels, + int line_size); |