aboutsummaryrefslogtreecommitdiffstats
path: root/libFDK
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2016-09-09 11:50:19 +0300
committerMartin Storsjo <martin@martin.st>2016-09-11 13:28:44 +0300
commit45915b67e439e77dd28fef7d810ee3177e813ffc (patch)
tree9913771b3f3c0328889881e742760c3c22cb5588 /libFDK
parent6ac0611b07c548c4838fe29b98fc3bc7f68a4973 (diff)
downloadfdk-aac-45915b67e439e77dd28fef7d810ee3177e813ffc.tar.gz
fdk-aac-45915b67e439e77dd28fef7d810ee3177e813ffc.tar.bz2
fdk-aac-45915b67e439e77dd28fef7d810ee3177e813ffc.zip
Detect MSVC x64
Diffstat (limited to 'libFDK')
-rw-r--r--libFDK/include/FDK_archdef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libFDK/include/FDK_archdef.h b/libFDK/include/FDK_archdef.h
index 3aede59..1fadd2c 100644
--- a/libFDK/include/FDK_archdef.h
+++ b/libFDK/include/FDK_archdef.h
@@ -99,7 +99,7 @@ amm-info@iis.fraunhofer.de
/* Take action against VisualStudio 2005 crosscompile problems. */
/* Use single macro (the GCC built in macro) for architecture identification independent of the particular toolchain */
-#if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || (defined(_MSC_VER) && defined(_M_IX86)) || defined (__x86_64__)
+#if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || (defined(_MSC_VER) && defined(_M_IX86)) || defined (__x86_64__) || (defined(_MSC_VER) && defined(_M_X64))
#define __x86__
#endif