summaryrefslogtreecommitdiff
path: root/trunk/acinclude.m4
diff options
context:
space:
mode:
authordcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-05-17 20:47:57 +0000
committerdcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-05-17 20:47:57 +0000
commit64535184b704c36caba1b6a71609b0534acefe9b (patch)
tree7bae970b232dbc3ae8c0350a0adf8cf87c23fc5d /trunk/acinclude.m4
parent2aac39ab07aef5819eb67a3f05136b394c3ea4bb (diff)
64-bit FreeBSD sets host_cpu to "amd64", not "x86_64". Handle that case so that configure will work without explicitly specifying --host.
git-svn-id: https://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo@190 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'trunk/acinclude.m4')
-rw-r--r--trunk/acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/acinclude.m4 b/trunk/acinclude.m4
index 570e606..cc10a21 100644
--- a/trunk/acinclude.m4
+++ b/trunk/acinclude.m4
@@ -45,7 +45,7 @@ case "$host_os" in
objfmt='BSD-a.out'
else
case "$host_cpu" in
- x86_64)
+ x86_64 | amd64)
objfmt='ELF64'
;;
*)