From 2fd363a058be8451ee79abdef2e6a1a09c7e59e2 Mon Sep 17 00:00:00 2001 From: "Brian M. Waters" Date: Thu, 21 Feb 2013 19:58:50 +0000 Subject: [PATCH 1/3] build: Fix detection of Intel-style atomic primitives on amd64 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0c19929..3e7c214 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,7 @@ if test "x$INTEL" != "xno" -o "x$RADEON" != "xno" -o "x$NOUVEAU" != "xno" -o "x$ else if test "x$INTEL" != "xno"; then case $host_cpu in - i?86|x86_64) INTEL=yes ;; + i?86|x86_64|amd64) INTEL=yes ;; *) INTEL=no ;; esac fi -- 1.7.11.7