From 57e846f80384178da28eb166df7167ede4a0773c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 17 Aug 1997 19:08:33 +0000 Subject: [PATCH] Use a trick to make the test for GMP v2 to work when GMP v1 defines __GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2 (Untested.) --- Modules/mpzmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index a2bcfed7b1..bfa8ff7669 100644 --- a/Modules/mpzmodule.c +++ b/Modules/mpzmodule.c @@ -94,7 +94,7 @@ PERFORMANCE OF THIS SOFTWARE. #include "gmp.h" #include "gmp-impl.h" -#if __GNU_MP__ == 2 +#if __GNU_MP__ + 0 == 2 #define GMP2 #else #define MPZ_GET_STR_BUG -- 2.50.1