changeset 20575:c6b69870fcd5

mp3lib asm does not compile on AMD64.
author reimar
date Wed, 01 Nov 2006 18:19:02 +0000
parents fe90caee5f59
children 9e7c80f126d6
files mp3lib/Makefile mp3lib/sr1.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mp3lib/Makefile	Wed Nov 01 18:17:18 2006 +0000
+++ b/mp3lib/Makefile	Wed Nov 01 18:19:02 2006 +0000
@@ -7,7 +7,7 @@
 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
--- a/mp3lib/sr1.c	Wed Nov 01 18:17:18 2006 +0000
+++ b/mp3lib/sr1.c	Wed Nov 01 18:19:02 2006 +0000
@@ -31,7 +31,7 @@
 
 #include "libvo/fastmemcpy.h"
 
-#ifdef ARCH_X86
+#ifdef ARCH_X86_32
 #define CAN_COMPILE_X86_ASM
 #endif