summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@mips.inka.de>2015-01-09 22:37:37 +0000
committerErik de Castro Lopo <erikd@mega-nerd.com>2015-02-19 06:13:01 +1100
commitb5a10e75ed9a65a12aa69483717b4a8d6a973d06 (patch)
tree00b42225b4fd6c03bf85d7e6528f0c2a39da2284 /configure.ac
parentfed0dfa1086296df0af41ca8f0c6430d5ac75c87 (diff)
downloadflac-b5a10e75ed9a65a12aa69483717b4a8d6a973d06.tar.gz
configure.ac : Detect 'amd64' as being same as 'x86_64'.
On BSD systems, the 64-bit x86 architecture is called "amd64". Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
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 3af49dc3..91558dfd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,7 +104,7 @@ AC_CHECK_SIZEOF(void*,1)
asm_optimisation=no
case "$host_cpu" in
- x86_64)
+ amd64|x86_64)
if test $ac_cv_sizeof_voidp = 4 ; then
# This must be a 32 bit user space running on 64 bit kernel so treat
# this as ia32.