From a41b85d050a84e3341221b655697063384ee01f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 1 Apr 2002 16:45:51 +0000 Subject: [PATCH] backport gvanrossum's checkin of revision 2.40 of mpzmodule.c SF patch 517245 by Marc Recht. Support GMP version >= 2. --- Modules/mpzmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index d4a7370c6781..c3878cfac5e3 100644 --- a/Modules/mpzmodule.c +++ b/Modules/mpzmodule.c @@ -63,7 +63,7 @@ #include "gmp.h" -#if __GNU_MP__ + 0 == 2 +#if __GNU_MP__ + 0 >= 2 #define GMP2 #define BITS_PER_MP_LIMB mp_bits_per_limb #else -- 2.47.3