summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2007-07-27 05:08:54 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2007-07-27 05:08:54 (GMT)
commitdf7f38faceaf5832170b430565c5df4021be5308 (patch)
tree54afdd3038f60085842dfce57775be60920e27f7 /PC
parentd0aabc03c6ed37358dd6bbc726e72ce4fdc72405 (diff)
downloadcpython-df7f38faceaf5832170b430565c5df4021be5308.zip
cpython-df7f38faceaf5832170b430565c5df4021be5308.tar.gz
cpython-df7f38faceaf5832170b430565c5df4021be5308.tar.bz2
Correctly detect AMD64 architecture on VC2003
Diffstat (limited to 'PC')
-rw-r--r--PC/pyconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 302b9af..16cc9c5 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