patches/ppl/0.11.2/400-fix-build-with-gmp-5.1.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 From 9f843aecc23981aec6ed1eaa8be06e6786a47f0d Mon Sep 17 00:00:00 2001
     2 From: Roberto Bagnara <bagnara@cs.unipr.it>
     3 Date: Wed, 19 Dec 2012 08:42:19 +0100
     4 Subject: [PATCH] GMP version 5.1.0 (and, presumably, later versions) defines
     5  std::numeric_limits.
     6 
     7 ---
     8  src/mp_std_bits.cc      |    6 ++++++
     9  src/mp_std_bits.defs.hh |    6 ++++++
    10  2 files changed, 12 insertions(+)
    11 
    12 --- a/src/mp_std_bits.cc
    13 +++ b/src/mp_std_bits.cc
    14 @@ -26,6 +26,9 @@ site: http://www.cs.unipr.it/ppl/ . */
    15  #include <ppl-config.h>
    16  #include "mp_std_bits.defs.hh"
    17  
    18 +#if __GNU_MP_VERSION < 5 \
    19 +  || (__GNU_MP_VERSION == 5 && __GNU_MP_VERSION_MINOR < 1)
    20 +
    21  const bool std::numeric_limits<mpz_class>::is_specialized;
    22  const int std::numeric_limits<mpz_class>::digits;
    23  const int std::numeric_limits<mpz_class>::digits10;
    24 @@ -71,3 +74,6 @@ const bool std::numeric_limits<mpq_class
    25  const bool std::numeric_limits<mpq_class>::traps;
    26  const bool std::numeric_limits<mpq_class>::tininess_before;
    27  const std::float_round_style std::numeric_limits<mpq_class>::round_style;
    28 +
    29 +#endif // __GNU_MP_VERSION < 5
    30 +       // || (__GNU_MP_VERSION == 5 && __GNU_MP_VERSION_MINOR < 1)
    31 --- a/src/mp_std_bits.defs.hh
    32 +++ b/src/mp_std_bits.defs.hh
    33 @@ -39,6 +39,9 @@ void swap(mpz_class& x, mpz_class& y);
    34  #endif // defined(PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS)
    35  void swap(mpq_class& x, mpq_class& y);
    36  
    37 +#if __GNU_MP_VERSION < 5 \
    38 +  || (__GNU_MP_VERSION == 5 && __GNU_MP_VERSION_MINOR < 1)
    39 +
    40  namespace std {
    41  
    42  #ifdef PPL_DOXYGEN_INCLUDE_IMPLEMENTATION_DETAILS
    43 @@ -165,6 +168,9 @@ public:
    44  
    45  } // namespace std
    46  
    47 +#endif // __GNU_MP_VERSION < 5
    48 +       // || (__GNU_MP_VERSION == 5 && __GNU_MP_VERSION_MINOR < 1)
    49 +
    50  #include "mp_std_bits.inlines.hh"
    51  
    52  #endif // !defined(PPL_mp_std_bits_defs_hh)