From: Guido van Rossum Date: Fri, 1 Mar 2002 21:31:27 +0000 (+0000) Subject: SF patch 517245 by Marc Recht. X-Git-Tag: v2.3c1~6598 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f33250ef939356b8a577049cafce1961760fd27;p=thirdparty%2FPython%2Fcpython.git SF patch 517245 by Marc Recht. Support GMP version >= 2. Bugfix candidate. --- diff --git a/Misc/ACKS b/Misc/ACKS index 51780d87c1b9..28157a44ce30 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -355,6 +355,7 @@ Brian Quinlan Burton Radons Eric Raymond Edward K. Ream +Marc Recht John Redford Terry Reedy Ofir Reichenberg diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index c4e2993b0eac..e2d34b68a5d0 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