# HG changeset patch # User cehoyos # Date 1319996422 0 # Node ID e491bbbddf5d4165e859143566c78a268695a450 # Parent 4b5f57ccfff128a511b1aa382a2974943f4fab46 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 diff -r 4b5f57ccfff1 -r e491bbbddf5d configure --- a/configure Sat Oct 29 16:51:26 2011 +0000 +++ b/configure Sun Oct 30 17:40:22 2011 +0000 @@ -1492,7 +1492,7 @@ # 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 ;;