Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-07 03:08:06 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-07 03:08:06 +0300
commit591174f1ae3a674102478a63662c69e44f1f239f (patch)
treeb26e3adfcf53cbfd039ccd977bcd00835c12e9e2 /winconfig.h
parent21e8b26731ef1361e0bec37a316cf809d43fac52 (diff)
[msvc] Fix a few missing renames from ARCHITECTURE -> MONO_ARCHITECTURE
They were missed in 43403b8221ed0d6e65d4766fc629f178915df4e4.
Diffstat (limited to 'winconfig.h')
-rw-r--r--winconfig.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winconfig.h b/winconfig.h
index 71555cecf19..21f4fe7b1bb 100644
--- a/winconfig.h
+++ b/winconfig.h
@@ -7,11 +7,11 @@
/* The architecture this is running on */
#if defined(_M_IA64)
-#define ARCHITECTURE "ia64"
+#define MONO_ARCHITECTURE "ia64"
#elif defined(_M_AMD64)
-#define ARCHITECTURE "amd64"
+#define MONO_ARCHITECTURE "amd64"
#elif defined(_M_IX86)
-#define ARCHITECTURE "x86"
+#define MONO_ARCHITECTURE "x86"
#else
#error Unknown architecture
#endif