[MPlayer-cvslog] r21825 - trunk/configure

reimar subversion at mplayerhq.hu
Fri Jan 5 11:05:06 CET 2007


Author: reimar
Date: Fri Jan  5 11:05:05 2007
New Revision: 21825

Modified:
   trunk/configure

Log:
move runtime cpu detection check after detection of host architecture,
since it uses the host architecture to check if it is supported.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Fri Jan  5 11:05:05 2007
@@ -548,10 +548,6 @@
   esac
 done
 
-if test "$_runtime_cpudetection" = yes && not x86 && not ppc; then
-  die "Runtime CPU detection only works for x86, x86-64 and PPC!"
-fi
-
 # Determine our OS name and CPU architecture
 if test -z "$_target" ; then
   # OS name
@@ -637,6 +633,10 @@
 echo "Detected operating system: $system_name"
 echo "Detected host architecture: $host_arch"
 
+if test "$_runtime_cpudetection" = yes && not x86 && not ppc; then
+  die "Runtime CPU detection only works for x86, x86-64 and PPC!"
+fi
+
 # LGB: temporary files
 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
   test "$I" && break



More information about the MPlayer-cvslog mailing list