Remove (now hopefully unnecessary) workarounds added in r21056

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21065 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-11-19 16:54:06 +00:00
parent 29bd581b71
commit 4b4ab6fb85
3 changed files with 0 additions and 18 deletions

View File

@ -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

View File

@ -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 */

View File

@ -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