summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-29 19:48:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-29 19:48:45 +0000
commitb305934c769ca4219b570200d2579c823a88b9d6 (patch)
treebce76c05660d1dad260d879ec224301b2c75dd39 /cpudetect.c
parent436b81a923f5f62f3ffe29b308a86f4911fff546 (diff)
downloadmpv-b305934c769ca4219b570200d2579c823a88b9d6.tar.bz2
mpv-b305934c769ca4219b570200d2579c823a88b9d6.tar.xz
Enable SSE on MinGW, many builds out there seem to use it without ill effect.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24662 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c
index 7fdae3748c..9a6acf1db8 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -181,7 +181,7 @@ void GetCpuCaps( CpuCaps *caps)
#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)