From 45e7de400a3045f0e9a8c8998803def9347fe6cb Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 5 Mar 2002 14:20:32 +0000 Subject: [PATCH] backport gvanrossum's checkin of revision 2.40 of mpzmodule.c SF patch 517245 by Marc Recht. Support GMP version >= 2. Bugfix candidate. --- Modules/mpzmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index 04057f1fa561..5c4d5cc8a695 100644 --- a/Modules/mpzmodule.c +++ b/Modules/mpzmodule.c @@ -62,7 +62,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