Fixed config.recommend to use same test as config.h for X32. Missed at check-in c08cac0c

pull/81/head
Jeffrey Walton 2015-12-08 15:02:10 -05:00
parent 5703c85d2d
commit 695bb3d5df
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ NAMESPACE_END
// Linux provides X32, which is 32-bit integers, longs and pointers on x86_64 using the full x86_64 register set.
// Detect via __ILP32__ (http://wiki.debian.org/X32Port). Both GCC and Clang provide the preprocessor macro.
#if ((__ILP32__ >= 1) || (_ILP32 >= 1))
#if ((__ILP32__ >= 1) || (_ILP32 >= 1)) && defined(__x86_64__)
#define CRYPTOPP_BOOL_X32 1
#else
#define CRYPTOPP_BOOL_X32 0