summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-06 12:06:59 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-06 12:06:59 +0000
commita79caf17d6ef7d437159c1568b429f1594b629df (patch)
tree5048fd7f5f7ecbf8ace3a9717446d9ce8f8882fd /cpudetect.c
parent5ddc6023e2240d382be6562da0b6ae9732d209cf (diff)
downloadmpv-a79caf17d6ef7d437159c1568b429f1594b629df.tar.bz2
mpv-a79caf17d6ef7d437159c1568b429f1594b629df.tar.xz
disable sse support for mingw because of missing memalign
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10824 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 c81a96ba44..7ec2ec8b4a 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -167,7 +167,7 @@ void GetCpuCaps( CpuCaps *caps)
#endif
/* FIXME: Does SSE2 need more OS support, too? */
-#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(WIN32)
+#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
if (caps->hasSSE)
check_os_katmai_support();
if (!caps->hasSSE)