summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/Makefile8
-rw-r--r--mp3lib/decod386.c5
-rw-r--r--mp3lib/sr1.c5
3 files changed, 0 insertions, 18 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index b25fbdbf75..2889e9c72f 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -9,17 +9,9 @@ CFLAGS = -I.. $(OPTFLAGS)
SRCS = sr1.c
ifeq ($(TARGET_ARCH_X86_32),yes)
SRCS += decode_i586.c
-# Darwin can't compile tabinit_MMX.c. However, we need costab_mmx from
-# decode_mmx.c for dct64_sse.c.
-ifeq ($(TARGET_OS),Darwin)
-ifeq ($(TARGET_MMX),yes)
-SRCS += decode_MMX.c
-endif
-else
ifeq ($(TARGET_MMX),yes)
SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
endif
-endif
ifeq ($(TARGET_3DNOW),yes)
SRCS += dct36_3dnow.c dct64_3dnow.c
endif
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index bd93932353..6752146755 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -19,11 +19,6 @@
#include "config.h"
-/* Can't compile MMX assembly on Darwin */
-#ifdef SYS_DARWIN
-#undef HAVE_MMX
-#endif /* SYS_DARWIN */
-
#if 0
/* old WRITE_SAMPLE */
/* is portable */
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 3847e8e6b5..e5e6395290 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -31,11 +31,6 @@
#include "libvo/fastmemcpy.h"
-// Can't compile MMX assembly on Darwin
-#ifdef SYS_DARWIN
-#undef HAVE_MMX
-#endif /* SYS_DARWIN */
-
#ifdef ARCH_X86_32
#define CAN_COMPILE_X86_ASM
#endif