From: Martin v. Löwis Date: Mon, 1 Apr 2002 16:45:51 +0000 (+0000) Subject: backport gvanrossum's checkin of X-Git-Tag: v2.1.3~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a41b85d050a84e3341221b655697063384ee01f7;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. --- 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