diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-02-14 16:08:32 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-02-14 16:08:32 +0000 |
commit | 0574f089cdff2d5c87b1b636ef392aaef86beeb2 (patch) | |
tree | 41f6f765e9485f3df50897471dc9fce6d81598fa /media-sound/jack-audio-connection-kit/files | |
parent | Removed old (diff) | |
download | gentoo-2-0574f089cdff2d5c87b1b636ef392aaef86beeb2.tar.gz gentoo-2-0574f089cdff2d5c87b1b636ef392aaef86beeb2.tar.bz2 gentoo-2-0574f089cdff2d5c87b1b636ef392aaef86beeb2.zip |
remove old
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-sound/jack-audio-connection-kit/files')
3 files changed, 0 insertions, 134 deletions
diff --git a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-ppc64fix.patch b/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-ppc64fix.patch deleted file mode 100644 index f0d148413518..000000000000 --- a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-ppc64fix.patch +++ /dev/null @@ -1,83 +0,0 @@ ---- configure.ac.orig 2007-10-08 00:19:25.000000000 -0500 -+++ configure.ac 2007-10-08 00:42:19.000000000 -0500 -@@ -219,8 +219,20 @@ - - dnl ---------------------------------------------------------------------- - -- --if test "$target_cpu" = "powerpc"; then -+ -+if test "$target_cpu" = "powerpc64" ; then -+ -+ AC_ARG_ENABLE(cell, -+ [ --enable-cell enable Cell BE support (default=no)],, -+ [ enable_cell=no ]) -+ -+ if test "x$enable_cell" = xyes; then -+ AC_DEFINE(ENABLE_CELLBE, 1, [Define to 1 if you need support for the Cell BE.]) -+ fi -+ -+fi -+ -+if test "$target_cpu" = "powerpc" -o "$target_cpu" = "powerpc64" ; then - - AC_DEFINE(POWERPC, 1, "Are we running a ppc CPU?") - -@@ -252,6 +262,9 @@ - dnl -mcpu=7450 does not reliably work with gcc 3.* - - JACK_OPT_CFLAGS="-D_REENTRANT -mcpu=7400 $ALTIVEC_OPT_FLAGS_FLAGS -mhard-float -mpowerpc-gfxopt" -+ if test "$target_cpu" = "powerpc64"; then -+ JACK_OPT_CFLAGS="-D_REENTRANT -O2 -mcpu=powerpc64 $ALTIVEC_OPT_FLAGS -mhard-float" -+ fi - - elif echo $target_cpu | egrep '(i.86|x86_64)' >/dev/null; then - ---- config/cpu/powerpc/cycles.h.orig 2006-05-25 21:45:16.000000000 -0500 -+++ config/cpu/powerpc/cycles.h 2007-10-08 00:49:03.000000000 -0500 -@@ -25,6 +25,9 @@ - /* PowerPC */ - - #define CPU_FTR_601 0x00000100 -+#ifdef __powerpc64__ -+#define CPU_FTR_CELL_TB_BUG 0x0000800000000000UL -+#endif /* __powerpc64__ */ - - typedef unsigned long cycles_t; - -@@ -36,6 +39,27 @@ - { - cycles_t ret = 0; - -+#ifdef __powerpc64__ -+#ifdef ENABLE_CELLBE -+ __asm__ __volatile__( \ -+ "90: mftb %0;\n" \ -+ "97: cmpwi %0,0;\n" \ -+ " beq- 90b;\n" \ -+ "99:\n" \ -+ ".section __ftr_fixup,\"a\"\n" \ -+ ".align 3\n" \ -+ "98:\n" \ -+ " .llong %1\n" \ -+ " .llong %1\n" \ -+ " .llong 97b-98b\n" \ -+ " .llong 99b-98b\n" \ -+ ".previous" \ -+ : "=r" (ret) : "i" (CPU_FTR_CELL_TB_BUG)); -+ -+#else /* !ENABLE_CELLBE */ -+ __asm__ __volatile__("mftb %0" : "=r" (ret)); -+#endif /* !ENABLE_CELLBE */ -+#else - __asm__ __volatile__( - "98: mftb %0\n" - "99:\n" -@@ -46,6 +70,7 @@ - " .long 99b\n" - ".previous" - : "=r" (ret) : "i" (CPU_FTR_601)); -+#endif /* !__powerpc64__ */ - return ret; - } - diff --git a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-riceitdown.patch b/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-riceitdown.patch deleted file mode 100644 index 35d6de51d532..000000000000 --- a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-0.103.0-riceitdown.patch +++ /dev/null @@ -1,41 +0,0 @@ -Index: jack-audio-connection-kit-0.103.0/configure.ac -=================================================================== ---- jack-audio-connection-kit-0.103.0.orig/configure.ac -+++ jack-audio-connection-kit-0.103.0/configure.ac -@@ -210,8 +210,6 @@ AM_CONDITIONAL(USE_POSIX_SHM, $USE_POSIX - - JACK_CORE_CFLAGS="-I\$(top_srcdir)/config -I\$(top_srcdir) \ - -I\$(top_srcdir) -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g" --JACK_OPT_CFLAGS="$JACK_CORE_CFLAGS -march=pentium2 -mcpu=pentium4 -O3 \ ---ffast-math -funroll-loops -fprefetch-loop-arrays" - JACK_CFLAGS="$JACK_CORE_CFLAGS $CFLAGS" - - dnl -@@ -253,7 +251,7 @@ if test "$target_cpu" = "powerpc"; then - - dnl -mcpu=7450 does not reliably work with gcc 3.* - -- JACK_OPT_CFLAGS="-D_REENTRANT -O2 -mcpu=7400 $ALTIVEC_OPT_FLAGS_FLAGS -mhard-float -mpowerpc-gfxopt" -+ JACK_OPT_CFLAGS="-D_REENTRANT -mcpu=7400 $ALTIVEC_OPT_FLAGS_FLAGS -mhard-float -mpowerpc-gfxopt" - - elif echo $target_cpu | egrep '(i.86|x86_64)' >/dev/null; then - -@@ -339,17 +337,7 @@ elif echo $target_cpu | egrep '(i.86|x86 - fi - - AC_DEFINE(x86, 1, "Nope it's intel") -- COMMON_X86_OPT_FLAGS="-DREENTRANT -O3 -fomit-frame-pointer -ffast-math -funroll-loops" -- -- if test "$target_cpu" = "i586"; then -- JACK_OPT_CFLAGS="-march=i586 " -- elif test "$target_cpu" = "i686"; then -- JACK_OPT_CFLAGS="-march=i686" -- elif test "$target_cpu" = "x86_64"; then -- JACK_OPT_CFLAGS="-march=k8" -- else -- : -- fi -+ COMMON_X86_OPT_FLAGS="-DREENTRANT" - - JACK_OPT_CFLAGS="$COMMON_X86_OPT_FLAGS $JACK_OPT_CFLAGS $MMX_FLAGS $SSE_FLAGS" - diff --git a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-transport.patch b/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-transport.patch deleted file mode 100644 index 74860d76b933..000000000000 --- a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-transport.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- example-clients/transport.c 2005-06-02 13:31:18 -0500 -+++ example-clients/transport.c-new 2005-08-05 11:24:11 -0500 -@@ -26,6 +26,7 @@ - #include <string.h> - #include <readline/readline.h> - #include <readline/history.h> -+#include <readline/chardefs.h> - #include <jack/jack.h> - #include <jack/transport.h> - |