summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/audacity/files/audacity-1.3.0b-x86.patch')
-rw-r--r--media-sound/audacity/files/audacity-1.3.0b-x86.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/media-sound/audacity/files/audacity-1.3.0b-x86.patch b/media-sound/audacity/files/audacity-1.3.0b-x86.patch
deleted file mode 100644
index c43091ac011c..000000000000
--- a/media-sound/audacity/files/audacity-1.3.0b-x86.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur audacity-src-1.3.0b-beta.orig/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp audacity-src-1.3.0b-beta/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp
---- audacity-src-1.3.0b-beta.orig/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp 2005-11-28 01:47:29.000000000 +0900
-+++ audacity-src-1.3.0b-beta/lib-src/soundtouch/source/SoundTouch/cpu_detect_x86_gcc.cpp 2006-08-06 08:25:36.000000000 +0900
-@@ -95,7 +95,7 @@
- "\n\tpushf" // save updated eflags to stack
- "\n\tpop %%eax" // load from stack
- "\n\txor %%edx, %%edx" // clear edx for defaulting no mmx
-- "\n\tcmp %%eax, %%ecx" // compare to original eflags values
-+ "\n\tcmp %%ecx, %%eax" // compare to original eflags values
- "\n\tjz end" // jumps to 'end' if cpuid not present
-
- // cpuid instruction available, test for presence of mmx instructions
-@@ -132,9 +132,9 @@
-
- "\n\tmov %%esi, %0"
-
-- : "=rm" (res)
-+ : "=r" (res)
- : /* no inputs */
-- : "%edx", "%eax", "%ecx", "%ebx", "%esi" );
-+ : "%edx", "%eax", "%ecx", "%esi" );
-
- return res & ~_dwDisabledISA;
- #endif