[MPlayer-cvslog] r34278 - trunk/configure

cehoyos subversion at mplayerhq.hu
Sun Oct 30 18:40:22 CET 2011


Author: cehoyos
Date: Sun Oct 30 18:40:22 2011
New Revision: 34278

Log:
Fix compilation on Solaris/OpenIndiana where 'uname -m' outputs "i86pc".

This fixes a regression since r33887 and bug 1998.
Patch by Granville Moore, gvm nemesys com

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sat Oct 29 18:51:26 2011	(r34277)
+++ trunk/configure	Sun Oct 30 18:40:22 2011	(r34278)
@@ -1492,7 +1492,7 @@ if test -z "$_target" ; then
 
   # host's CPU/instruction set
   case "$(uname -m 2>&1)" in
-      x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) host_arch=i386 ;;
+      x86_64|amd64|i[3-9]86*|i86pc|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) host_arch=i386 ;;
       ia64) host_arch=ia64 ;;
       macppc|ppc*|Power*) host_arch=ppc ;;
       alpha) host_arch=alpha ;;


More information about the MPlayer-cvslog mailing list