summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-25 18:32:07 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-25 18:32:07 +0100
commit11f99002860be3110d25ebbe3dc13010cd32244b (patch)
treed6fa19903a9dada02e0be7e2591c3f2476312a73 /configure.ac
parent5ee5ea4f0a6027e0261e4ee769bedb0e598c41de (diff)
fixed detection of x86_64 arch on freebsd
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 104d8e6a..66a45301 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@ case "$host" in
i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*)
AC_DEFINE(ARCH_X86_32, 1, [architecture is x86])
;;
- x86_64-*-*)
+ x86_64-*-* | amd64-*-*)
AC_DEFINE(ARCH_X86_64, 1, [architecture is x86_64])
;;
powerpc-*-* )