# HG changeset patch # User "Yann E. MORIN" # Date 1269981109 -7200 # Node ID 4477403726dbe7a607e2a5b3ad3189a1744d418f # Parent d7787259005ec978ac958541f6aedf6574e0ac5b complibs: update versions GMP : 4.3.2, 5.0.1* CLooG/PPL: 0.15.8 0.15.9 libelf : 0.8.13 *: patch series added diff -r d7787259005e -r 4477403726db config/companion_libs/cloog.in --- a/config/companion_libs/cloog.in Mon Mar 29 23:37:29 2010 +0200 +++ b/config/companion_libs/cloog.in Tue Mar 30 22:31:49 2010 +0200 @@ -6,6 +6,14 @@ # Don't remove next line # CT_INSERT_VERSION_BELOW +config CLOOG_V_0_15_9 + bool + prompt "0.15.9" + +config CLOOG_V_0_15_8 + bool + prompt "0.15.8" + config CLOOG_V_0_15_7 bool prompt "0.15.7" @@ -35,6 +43,8 @@ string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "0.15.9" if CLOOG_V_0_15_9 + default "0.15.8" if CLOOG_V_0_15_8 default "0.15.7" if CLOOG_V_0_15_7 default "0.15.6" if CLOOG_V_0_15_6 default "0.15.5" if CLOOG_V_0_15_5 diff -r d7787259005e -r 4477403726db config/companion_libs/gmp.in --- a/config/companion_libs/gmp.in Mon Mar 29 23:37:29 2010 +0200 +++ b/config/companion_libs/gmp.in Tue Mar 30 22:31:49 2010 +0200 @@ -6,6 +6,14 @@ # Don't remove next line # CT_INSERT_VERSION_BELOW +config GMP_V_5_0_1 + bool + prompt "5.0.1" + +config GMP_V_4_3_2 + bool + prompt "4.3.2" + config GMP_V_4_3_1 bool prompt "4.3.1" @@ -30,6 +38,8 @@ string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "5.0.1" if GMP_V_5_0_1 + default "4.3.2" if GMP_V_4_3_2 default "4.3.1" if GMP_V_4_3_1 default "4.3.0" if GMP_V_4_3_0 default "4.2.4" if GMP_V_4_2_4 diff -r d7787259005e -r 4477403726db config/companion_libs/libelf.in --- a/config/companion_libs/libelf.in Mon Mar 29 23:37:29 2010 +0200 +++ b/config/companion_libs/libelf.in Tue Mar 30 22:31:49 2010 +0200 @@ -6,6 +6,10 @@ # Don't remove next line # CT_INSERT_VERSION_BELOW +config LIBELF_V_0_8_13 + bool + prompt "0.8.13" + config LIBELF_V_0_8_12 bool prompt "0.8.12" @@ -25,6 +29,7 @@ string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "0.8.13" if LIBELF_V_0_8_13 default "0.8.12" if LIBELF_V_0_8_12 default "0.8.11" if LIBELF_V_0_8_11 default "0.8.10" if LIBELF_V_0_8_10 diff -r d7787259005e -r 4477403726db patches/gmp/5.0.1/100-fix-tests-ABI-long-long.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patches/gmp/5.0.1/100-fix-tests-ABI-long-long.patch Tue Mar 30 22:31:49 2010 +0200 @@ -0,0 +1,43 @@ + +# HG changeset patch +# User Torbjorn Granlund +# Date 1267122532 -3600 +# Node ID 794410151f5f966bcb5c3489b6441614990efe7c +# Parent 948660e2e56d9cfaae035082b8fd473985505fb6 +Fix a test case to work for long long limbs. + +diff -r 948660e2e56d -r 794410151f5f ChangeLog +--- a/ChangeLog Thu Feb 25 16:08:21 2010 +0100 ++++ b/ChangeLog Thu Feb 25 19:28:52 2010 +0100 +@@ -1,5 +1,8 @@ + 2010-02-25 Torbjorn Granlund + ++ * tests/mpz/t-perfpow.c (check_random): Use mp_limb_t type for limb ++ variables. ++ + * tests/mpn/t-div.c: Cast a switch index to placate HP's cc. + * tests/mpn/t-bdiv.c: Likewise. + +diff -r 948660e2e56d -r 794410151f5f tests/mpz/t-perfpow.c +--- a/tests/mpz/t-perfpow.c Thu Feb 25 16:08:21 2010 +0100 ++++ b/tests/mpz/t-perfpow.c Thu Feb 25 19:28:52 2010 +0100 +@@ -2,7 +2,7 @@ + + Contributed to the GNU project by Torbjorn Granlund and Martin Boij. + +-Copyright 2008, 2009 Free Software Foundation, Inc. ++Copyright 2008, 2009, 2010 Free Software Foundation, Inc. + + This file is part of the GNU MP Library. + +@@ -109,7 +109,8 @@ + { + mpz_t n, np, temp, primes[NRP]; + int i, j, k, unique, destroy, res; +- unsigned long int nrprimes, primebits, g, exp[NRP], e; ++ unsigned long int nrprimes, primebits; ++ mp_limb_t g, exp[NRP], e; + gmp_randstate_ptr rands; + + rands = RANDS; + diff -r d7787259005e -r 4477403726db patches/libelf/0.8.13/100-fix-64-bit-detection.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patches/libelf/0.8.13/100-fix-64-bit-detection.patch Tue Mar 30 22:31:49 2010 +0200 @@ -0,0 +1,24 @@ +diff -dur libelf-0.8.10.orig/configure libelf-0.8.10/configure +--- libelf-0.8.10.orig/configure 2007-09-07 14:08:06.000000000 +0200 ++++ libelf-0.8.10/configure 2008-10-23 22:43:19.000000000 +0200 +@@ -1595,7 +1595,7 @@ + echo $ac_n "(cached) $ac_c" 1>&6 + else + if test "$cross_compiling" = yes; then +- ac_cv_sizeof_long_long=0 ++ ac_cv_sizeof_long_long=8 + else + cat > conftest.$ac_ext <