[MPlayer-cvslog] r33714 - trunk/configure

reimar subversion at mplayerhq.hu
Thu Jun 23 20:42:26 CEST 2011


Author: reimar
Date: Thu Jun 23 20:42:26 2011
New Revision: 33714

Log:
Fix "sse in cpuinfo implies mmxext" hack to still work when --disable-sse is used.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Wed Jun 22 21:12:23 2011	(r33713)
+++ trunk/configure	Thu Jun 23 20:42:26 2011	(r33714)
@@ -1777,14 +1777,13 @@ if x86 ; then
 
   pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
                             -e s/xmm/sse/ -e s/kni/sse/)
+  # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
+  pparam=$(echo $pparam | sed -e 's/sse/sse mmxext/')
 
   for ext in $pparam ; do
     eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
   done
 
-  # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
-  test $_sse = kernel_check && _mmxext=kernel_check
-
   echocheck "CPU vendor"
   echores "$pvendor ($pfamily:$pmodel:$pstepping)"
 


More information about the MPlayer-cvslog mailing list