summaryrefslogtreecommitdiff
path: root/PC/pyconfig.h
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2007-07-27 05:08:54 +0000
committerMark Hammond <mhammond@skippinet.com.au>2007-07-27 05:08:54 +0000
commit1e31f6fea865efbc76b6299c1789e7d4632eafb4 (patch)
tree6719de2ce763ab6c9b8c7ea602a91102fc55e53f /PC/pyconfig.h
parent73d8f7ae1298f4d7e0284a40d9c362dc55826c5d (diff)
downloadcpython-1e31f6fea865efbc76b6299c1789e7d4632eafb4.tar.gz
Correctly detect AMD64 architecture on VC2003
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 302b9afaf8..16cc9c5092 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -140,7 +140,7 @@ MS_CORE_DLL.
#if defined(_M_IA64)
#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
#define MS_WINI64
-#elif defined(_M_X64)
+#elif defined(_M_X64) || defined(_M_AMD64)
#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
#define MS_WINX64
#else