[vlc-commits] Test SSE compiler support on all IA32 architectures, not just 686
Rémi Denis-Courmont
git at videolan.org
Mon May 9 18:01:09 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon May 9 18:36:55 2011 +0300| [41346148927242528a72dc5006f77594944c3d43] | committer: Rémi Denis-Courmont
Test SSE compiler support on all IA32 architectures, not just 686
Same as is done for MMX. Run-time checks determine whether SSE can be
used in any case.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=41346148927242528a72dc5006f77594944c3d43
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index d7f17c7..6dbcfff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1347,7 +1347,7 @@ AC_ARG_ENABLE(sse,
[AS_HELP_STRING([--disable-sse],
[disable SSE (1-4) optimizations (default auto)])],, [
case "${host_cpu}" in
- i686|x86_64)
+ i?86|x86_64)
enable_sse=yes
;;
*)
More information about the vlc-commits
mailing list