amd64 - apparently fbsd is still living back in that past where 64bit was amd
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 24 Apr 2010 14:05:05 +0000 (14:05 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 24 Apr 2010 14:05:05 +0000 (14:05 +0000)
only... :)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@48272 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

m4/efl_cpu.m4

index 8eccc05..8fa6cd7 100644 (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