comparison configure @ 20147:8a760f0395d0

Run TOOLS/cpuinfo on x86_64 as well as x86. patch from the NetBSD pkgsrc
author diego
date Wed, 11 Oct 2006 08:13:52 +0000
parents cfbb283087f0
children 2ee2541b06bc
comparison
equal deleted inserted replaced
20146:cfbb283087f0 20147:8a760f0395d0
840 # use hostinfo on Darwin 840 # use hostinfo on Darwin
841 _cpuinfo="hostinfo" 841 _cpuinfo="hostinfo"
842 elif aix; then 842 elif aix; then
843 # use 'lsattr' on AIX 843 # use 'lsattr' on AIX
844 _cpuinfo="lsattr -E -l proc0 -a type" 844 _cpuinfo="lsattr -E -l proc0 -a type"
845 elif x86; then 845 elif x86 || x86_64; then
846 # all other OSes try to extract CPU information from a small helper 846 # all other OSes try to extract CPU information from a small helper
847 # program TOOLS/cpuinfo instead 847 # program TOOLS/cpuinfo instead
848 $_cc -o TOOLS/cpuinfo TOOLS/cpuinfo.c 848 $_cc -o TOOLS/cpuinfo TOOLS/cpuinfo.c
849 _cpuinfo="TOOLS/cpuinfo" 849 _cpuinfo="TOOLS/cpuinfo"
850 fi 850 fi