changeset 24642:bfcf6b2e62d6

Enable SSE on MinGW, many builds out there seem to use it without ill effect.
author diego
date Sat, 29 Sep 2007 19:48:45 +0000
parents 6293d01f589d
children d1827bb15d79
files cpudetect.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)