about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-11-13T14·54+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-11-13T14·54+0000
commite7904043184ed08b1c4f206bd67c9e84305220f0 (patch)
treec4a8991c6a77b93fe71263069a2366d7109104d4 /configure.ac
parent983c5e3fce1fb688ec086a5d6664a30f492f700d (diff)
* Don't use the result of `uname -p' on x86_64 as it gives wacky
  results on some machines. (NIX-69)

Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index d24ebd5d84..37ebe06b5c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,6 +32,9 @@ case $machine_name in
     i*86)
         machine_name=i686
         ;;
+    x86_64)
+        machine_name=x86_64
+        ;;
     ppc)
         machine_name=powerpc
         ;;