From: Michael W. Hudson Date: Tue, 5 Mar 2002 14:20:32 +0000 (+0000) Subject: backport gvanrossum's checkin of X-Git-Tag: v2.2.1c1~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=45e7de400a3045f0e9a8c8998803def9347fe6cb;p=thirdparty%2FPython%2Fcpython.git backport gvanrossum's checkin of revision 2.40 of mpzmodule.c SF patch 517245 by Marc Recht. Support GMP version >= 2. Bugfix candidate. --- 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