From 4c004a0a9abd40638f72bbee425acfaf61f1f8aa Mon Sep 17 00:00:00 2001 From: "cls%seawood.org" Date: Fri, 26 Mar 2004 01:17:16 +0000 Subject: [PATCH] Disable mmx/sse2 for win32 gcc builds. Bug #125762 sr=tor a=asa --- jpeg/jmorecfg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpeg/jmorecfg.h b/jpeg/jmorecfg.h index 5ad307cfbda..01fc6225f98 100644 --- a/jpeg/jmorecfg.h +++ b/jpeg/jmorecfg.h @@ -107,7 +107,7 @@ typedef short JCOEF; /* Defines for MMX/SSE2 support. */ -#if defined(XP_WIN32) && defined(_M_IX86) +#if defined(XP_WIN32) && defined(_M_IX86) && !defined(__GNUC__) #define HAVE_MMX_INTEL_MNEMONICS #define HAVE_SSE2_INTEL_MNEMONICS #endif