Commit 39ebfa51 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix MDEV-49 : version_compile_machine server variable is 'unknown' for x64 builds

parent 629cdab8
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
#define MACHINE_TYPE "ia64" #define MACHINE_TYPE "ia64"
#elif defined(_M_IX86) #elif defined(_M_IX86)
#define MACHINE_TYPE "ia32" #define MACHINE_TYPE "ia32"
#elif defined(_M_ALPHA) #elif defined(_M_X64)
#define MACHINE_TYPE "axp" #define MACHINE_TYPE "x64"
#else #else
#define MACHINE_TYPE "unknown" /* Define to machine type name */ #define MACHINE_TYPE "unknown" /* Define to machine type name */
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment