From c0a5bf9803fae23f6098ab1bef40d48cd429e7ae Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Wed, 28 Mar 2007 22:45:25 +0000 Subject: [PATCH] FreeBSD amd64 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55a8f8d37..e8d2a68e0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ print "Attempting to detect your system information" if platform.machine() == "i386" or platform.machine() == "i686": print "32bit x86 system detected" ARCH = "x86" -elif platform.machine() == "x86_64": +elif platform.machine() == "x86_64" or platform.machine() == "amd64": print "64bit x86_64 system detected" ARCH = "x64" elif platform.processor() == "powerpc":