# HG changeset patch # User reimar # Date 1162405142 0 # Node ID c6b69870fcd5911c4d053e6fecde802b337abfba # Parent fe90caee5f59c064533184963d20b7a8cff11c15 mp3lib asm does not compile on AMD64. diff -r fe90caee5f59 -r c6b69870fcd5 mp3lib/Makefile --- 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 diff -r fe90caee5f59 -r c6b69870fcd5 mp3lib/sr1.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