# HG changeset patch # User diego # Date 1191095325 0 # Node ID bfcf6b2e62d68d0b6d5584286f33087c3aaae610 # Parent 6293d01f589dd37b059096d8261778e9c547027d Enable SSE on MinGW, many builds out there seem to use it without ill effect. diff -r 6293d01f589d -r bfcf6b2e62d6 cpudetect.c --- a/cpudetect.c Sat Sep 29 17:11:24 2007 +0000 +++ b/cpudetect.c Sat Sep 29 19:48:45 2007 +0000 @@ -181,7 +181,7 @@ #endif /* FIXME: Does SSE2 need more OS support, too? */ -#if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__CYGWIN__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__CYGWIN__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__) || defined(__MINGW32__) if (caps->hasSSE) check_os_katmai_support(); if (!caps->hasSSE)