summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mp3lib/Makefile2
-rw-r--r--mp3lib/sr1.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index 5647d536ec..2889e9c72f 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -7,7 +7,7 @@ endif
CFLAGS = -I.. $(OPTFLAGS)
SRCS = sr1.c
-ifeq ($(TARGET_ARCH_X86),yes)
+ifeq ($(TARGET_ARCH_X86_32),yes)
SRCS += decode_i586.c
ifeq ($(TARGET_MMX),yes)
SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 68d77d5625..e5e6395290 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -31,7 +31,7 @@
#include "libvo/fastmemcpy.h"
-#ifdef ARCH_X86
+#ifdef ARCH_X86_32
#define CAN_COMPILE_X86_ASM
#endif