summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2006-09-05 04:23:19 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2006-09-05 04:23:19 +0000
commiteacc0137f3dccaba570c5b8bb8ba380db7f94fbe (patch)
tree1f85c64e952bceaaf824bfcb9cfbdd1f0f83da5e /media-sound/audacity/files
parentMarked stable on mips. (diff)
downloadgentoo-2-eacc0137f3dccaba570c5b8bb8ba380db7f94fbe.tar.gz
gentoo-2-eacc0137f3dccaba570c5b8bb8ba380db7f94fbe.tar.bz2
gentoo-2-eacc0137f3dccaba570c5b8bb8ba380db7f94fbe.zip
Remove unused file
(Portage version: 2.1-r2)
Diffstat (limited to 'media-sound/audacity/files')
-rw-r--r--media-sound/audacity/files/audacity-1.2.3-x86.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/media-sound/audacity/files/audacity-1.2.3-x86.patch b/media-sound/audacity/files/audacity-1.2.3-x86.patch
deleted file mode 100644
index be98087980aa..000000000000
--- a/media-sound/audacity/files/audacity-1.2.3-x86.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- audacity-src-1.2.3/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp.orig 2005-07-09 19:49:20.000000000 +0800
-+++ audacity-src-1.2.3/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp 2005-07-09 20:02:30.000000000 +0800
-@@ -86,6 +86,7 @@
- "\n\txor %%esi, %%esi" // clear %%esi = result register
- // check if 'cpuid' instructions is available by toggling eflags bit 21
-
-+ "\n\tpushl %%ebx"
- "\n\tpushf" // save eflags to stack
- "\n\tpop %%eax" // load eax from stack (with eflags)
- "\n\tmovl %%eax, %%ecx" // save the original eflags values to ecx
-@@ -130,11 +131,12 @@
-
- "\n\tend:"
-
-+ "\n\tpopl %%ebx"
- "\n\tmov %%esi, %0"
-
- : "=rm" (res)
- : /* no inputs */
-- : "%edx", "%eax", "%ecx", "%ebx", "%esi" );
-+ : "%edx", "%eax", "%ecx", "%esi" );
-
- return res & ~_dwDisabledISA;
- #endif