diff options
Diffstat (limited to 'media-video/mplayer/files')
5 files changed, 0 insertions, 108 deletions
diff --git a/media-video/mplayer/files/configure-altivec.patch b/media-video/mplayer/files/configure-altivec.patch deleted file mode 100644 index 7a1cfa5c4473..000000000000 --- a/media-video/mplayer/files/configure-altivec.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- configure.orig 2008-05-20 22:18:27.000000000 -0600 -+++ configure 2008-05-20 22:21:21.000000000 -0600 -@@ -2418,10 +2418,9 @@ - cat > $TMPC << EOF - int main(void) { return 0; } - EOF -- cc_check -maltivec -mabi=altivec \ -- && _altivec_gcc_flags="-maltivec -mabi=altivec" \ -- || cc_check -faltivec && _altivec_gcc_flags=-faltivec \ -- || _altivec=no -+ cc_check -maltivec -mabi=altivec && _altivec_gcc_flags="-maltivec -mabi=altivec" -+ test "x$_altivec_gcc_flags" = "x" && cc_check -faltivec && _altivec_gcc_flags=-faltivec -+ test "x$_altivec_gcc_flags" = "x" && _altivec=no - echores "$_altivec_gcc_flags" - - # check if <altivec.h> should be included diff --git a/media-video/mplayer/files/configure-unsetauto-v2.patch b/media-video/mplayer/files/configure-unsetauto-v2.patch deleted file mode 100644 index d8a86a6d5b39..000000000000 --- a/media-video/mplayer/files/configure-unsetauto-v2.patch +++ /dev/null @@ -1,29 +0,0 @@ -Index: configure -=================================================================== ---- configure (revision 26439) -+++ configure (working copy) -@@ -2300,6 +2300,24 @@ - _altivec=yes - fi - fi -+if ! x86 ; then -+ _mmx= -+ _3dnow= -+ _3dnowext= -+ _mmxext= -+ _sse= -+ _sse2= -+ _ssse3= -+ _cmov= -+fi -+if ! ppc ; then -+ _altivec= -+fi -+if ! arm ; then -+ _armv5te= -+ _armv6= -+ _iwmmxt= -+fi - - - echocheck "extern symbol prefix" diff --git a/media-video/mplayer/files/libswscale-sparc.patch b/media-video/mplayer/files/libswscale-sparc.patch deleted file mode 100644 index f36b59eccfc8..000000000000 --- a/media-video/mplayer/files/libswscale-sparc.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- libswscale/Makefile- 2008-05-17 19:28:46.000000000 +0000 -+++ libswscale/Makefile 2008-05-17 19:29:16.000000000 +0000 -@@ -9,7 +9,7 @@ - OBJS-$(CONFIG_GPL) += yuv2rgb.o - OBJS-$(CONFIG_MLIB) += yuv2rgb_mlib.c - OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o --OBJS-$(HAVE_VIS) += yuv2rgb_vis.c -+OBJS-$(HAVE_VIS) += yuv2rgb_vis.o - - ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o - ---- libswscale/yuv2rgb_vis.c- 2008-05-17 19:28:59.000000000 +0000 -+++ libswscale/yuv2rgb_vis.c 2008-05-17 19:30:01.000000000 +0000 -@@ -23,6 +23,7 @@ - #include <stdlib.h> - - #include "swscale.h" -+#include "swscale_internal.h" - - #define YUV2RGB_INIT \ - "wr %%g0, 0x10, %%gsr \n\t" \ diff --git a/media-video/mplayer/files/mplayer-1.0_rc2_p24929-pulse.patch b/media-video/mplayer/files/mplayer-1.0_rc2_p24929-pulse.patch deleted file mode 100644 index 845c54f5c018..000000000000 --- a/media-video/mplayer/files/mplayer-1.0_rc2_p24929-pulse.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -uNr mplayer-1.0_rc2_p24929-orig/libao2/ao_pulse.c mplayer-1.0_rc2_p24929/libao2/ao_pulse.c ---- mplayer-1.0_rc2_p24929-orig/libao2/ao_pulse.c 2007-10-21 12:00:54.000000000 -0700 -+++ mplayer-1.0_rc2_p24929/libao2/ao_pulse.c 2008-01-04 15:46:22.000000000 -0800 -@@ -253,11 +253,16 @@ - /** Play the specified data to the pulseaudio server */ - static int play(void* data, int len, int flags) { - if (len) { -- if (pa_stream_write(stream, data, len, NULL, 0, PA_SEEK_RELATIVE) < 0) { -+ int rc; -+ pa_threaded_mainloop_lock(mainloop); -+ rc = pa_stream_write(stream, data, len, NULL, 0, PA_SEEK_RELATIVE); -+ pa_threaded_mainloop_unlock(mainloop); -+ if (rc < 0) { - GENERIC_ERR_MSG(context, "pa_stream_write() failed"); - return -1; - } - } else { -+ pa_threaded_mainloop_lock(mainloop); - pa_operation *o = pa_stream_trigger(stream, NULL, NULL); - if (!o) { - GENERIC_ERR_MSG(context, "pa_stream_trigger() failed"); -@@ -265,6 +270,7 @@ - } - /* We don't wait for this operation to complete */ - pa_operation_unref(o); -+ pa_threaded_mainloop_unlock(mainloop); - } - return len; - } diff --git a/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch b/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch deleted file mode 100644 index 42707c1b65b7..000000000000 --- a/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile 2008-04-16 21:06:20.000000000 +0200 -+++ Makefile.new 2008-04-16 21:11:02.000000000 +0200 -@@ -344,8 +344,8 @@ - if test "$$lang" = en ; then \ - $(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ ; \ - else \ -- $(INSTALL) -d $(MANDIR)/$$i/man1 ; \ -- $(INSTALL) -c -m 644 DOCS/man/$$lang/mplayer.1 $(MANDIR)/$$i/man1/ ; \ -+ $(INSTALL) -d $(MANDIR)/$$lang/man1 ; \ -+ $(INSTALL) -c -m 644 DOCS/man/$$lang/mplayer.1 $(MANDIR)/$$lang/man1/ ; \ - fi ; \ - done - |