diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-02 05:23:45 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-02 05:23:45 +0200 |
commit | 576b6208d6defe240bfa2477d6dd19f1ed83bfaf (patch) | |
tree | 7d54883f16cccc4cbd414398d7fec3c437b36b49 /media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch | |
parent | fdd6b67a78a966f6a2131de8fe0e539316511083 (diff) | |
download | darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.gz darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.bz2 darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.xz darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.zip |
Cleaned most of outdated stuff
Diffstat (limited to 'media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch')
-rw-r--r-- | media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch b/media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch deleted file mode 100644 index 7c1fd65..0000000 --- a/media-plugins/eq-xmms/files/eq-xmms-0.7-amd64_support.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- configure.in 2006-01-16 20:04:58.268962424 +0300 -+++ configure.in 2006-01-16 20:07:43.681815848 +0300 -@@ -155,6 +155,9 @@ - XF_CFLAGS="$XF_CFLAGS -DBENCHMARK" - fi - ;; -+ x86_64-*-*) -+ autodetect=no -+ ARCH_DEFINES="-DARCH_X86_64 -march=k8" - esac - ;; - *) ---- src/iir.c 2006-01-16 20:01:23.000000000 +0300 -+++ src/iir.c 2006-01-16 20:09:50.580524312 +0300 -@@ -60,7 +60,7 @@ - clean_history(); - } - --#ifdef ARCH_X86 -+#if defined(ARCH_X86) || defined(ARCH_X86_64) - /* Round function provided by Frank Klemm which saves around 100K - * CPU cycles in my PIII for each call to the IIR function with 4K samples - */ ---- src/iir_fpu.c 2006-01-15 03:26:32.000000000 +0300 -+++ src/iir_fpu.c 2006-01-16 20:10:22.492672928 +0300 -@@ -163,7 +163,7 @@ - #ifdef ARCH_PPC - tempgint = round_ppc(out[channel]); - #else --#ifdef ARCH_X86 -+#if defined(ARCH_X86) || defined(ARCH_X86_64) - tempgint = round_trick(out[channel]); - #else - tempgint = (int)out[channel]; ---- src/iir.h 2006-01-15 03:26:32.000000000 +0300 -+++ src/iir.h 2006-01-16 20:15:35.987014544 +0300 -@@ -58,7 +58,7 @@ - - __inline__ int iir(gpointer * d, gint length, gint srate, gint nch); - --#ifdef ARCH_X86 -+#if defined(ARCH_X86) || defined(ARCH_X86_64) - __inline__ int round_trick(float floatvalue_to_round); - #endif - #ifdef ARCH_PPC |