From: Remi Collet Date: Thu, 13 Nov 2014 12:08:00 +0000 (+0100) Subject: Fix build with gmp < 4.2 X-Git-Tag: php-5.6.4RC1~55^2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b156207446e0c5ec8a9476ad0966b5daa82f516;p=php Fix build with gmp < 4.2 See 3d6d863ccbd10d212352462b587ae1573af4f1d1 and acd7fcf55f81955e4837c750a5e45f83d3c55ba2 --- diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index e9c1ad3416..de61f1ca5f 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -1776,7 +1776,7 @@ static void gmp_init_random(TSRMLS_D) #if GMP_42_OR_NEWER gmp_randinit_mt(GMPG(rand_state)); #else - gmp_randinit_lc_2exp(GMPG(rand_state), 32L); + gmp_randinit_lc_2exp_size(GMPG(rand_state), 32L); #endif /* Seed */ gmp_randseed_ui(GMPG(rand_state), GENERATE_SEED());