mirror of https://github.com/python/cpython
SF patch 517245 by Marc Recht.
Support GMP version >= 2. Bugfix candidate.
This commit is contained in:
parent
7113d9607b
commit
6f33250ef9
|
@ -355,6 +355,7 @@ Brian Quinlan
|
|||
Burton Radons
|
||||
Eric Raymond
|
||||
Edward K. Ream
|
||||
Marc Recht
|
||||
John Redford
|
||||
Terry Reedy
|
||||
Ofir Reichenberg
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue