amd64 - apparently fbsd is still living back in that past where 64bit was amd

only... :)



SVN revision: 48272
This commit is contained in:
Carsten Haitzler 2010-04-24 14:05:05 +00:00
parent bb157d6145
commit 36bd7d71e0
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ dnl check if the CPU is supporting MMX instruction sets
_efl_build_cpu_mmx="no"
if test "x${_efl_enable_cpu_mmx}" = "xyes" ; then
case $host_cpu in
i*86 | x86_64)
i*86 | x86_64 | amd64)
_efl_build_cpu_mmx="yes"
;;
esac
@ -97,7 +97,7 @@ dnl check if the CPU is supporting SSE instruction sets
_efl_build_cpu_sse="no"
if test "x${_efl_enable_cpu_sse}" = "xyes" ; then
case $host_cpu in
i*86 | x86_64)
i*86 | x86_64 | amd64)
_efl_build_cpu_sse="yes"
;;
esac
@ -167,7 +167,7 @@ dnl check if the CPU is supporting SSE2 instruction sets
_efl_build_cpu_sse2="no"
if test "x${_efl_enable_cpu_sse2}" = "xyes" ; then
case $host_cpu in
i686 | x86_64)
i*86 | x86_64 | amd64)
_efl_build_cpu_sse2="yes"
;;
esac