Correctly detect AMD64 architecture on VC2003
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 @@
 #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