Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6f33250

Browse files
committed
SF patch 517245 by Marc Recht.
Support GMP version >= 2. Bugfix candidate.
1 parent 7113d96 commit 6f33250

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ Brian Quinlan
355355
Burton Radons
356356
Eric Raymond
357357
Edward K. Ream
358+
Marc Recht
358359
John Redford
359360
Terry Reedy
360361
Ofir Reichenberg

Modules/mpzmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
#include "gmp.h"
6464

65-
#if __GNU_MP__ + 0 == 2
65+
#if __GNU_MP__ + 0 >= 2
6666
#define GMP2
6767
#define BITS_PER_MP_LIMB mp_bits_per_limb
6868
#else

0 commit comments

Comments
 (0)