[MPlayer-cvslog] r30270 - trunk/configure

reimar subversion at mplayerhq.hu
Sun Jan 10 22:22:45 CET 2010


Author: reimar
Date: Sun Jan 10 22:22:44 2010
New Revision: 30270

Log:
Do not use FreeBSD's cpuinfo file on x86_64 either, as on x86_32 it will not
report 3Dnow availability.
Patch from FreeBSD ports.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Jan 10 21:32:19 2010	(r30269)
+++ trunk/configure	Sun Jan 10 22:22:44 2010	(r30270)
@@ -1648,9 +1648,10 @@ if test "$_runtime_cpudetection" = no ; 
 if test -r /proc/cpuinfo && ! cygwin; then
   # Linux with /proc mounted, extract CPU information from it
   _cpuinfo="cat /proc/cpuinfo"
-elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
+elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
   # FreeBSD with Linux emulation /proc mounted,
   # extract CPU information from it
+  # Don't use it on x86 though, it never reports 3Dnow
   _cpuinfo="cat /compat/linux/proc/cpuinfo"
 elif darwin && ! x86 ; then
   # use hostinfo on Darwin


More information about the MPlayer-cvslog mailing list