patches/ppl/0.11.2/400-fix-build-with-gmp-5.1.patch
author danielrubiob@gmail.com
Tue Feb 11 21:34:48 2014 +0100 (2014-02-11)
changeset 3285 a8cb9039fade
permissions -rw-r--r--
complibs/cloog: bump version

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>
[yann.morin.1998@free.fr: re-order versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
Message-Id: <c2de3964cd6d5e4173cc.1391984023@uemo>
Patchwork-Id: 318637
     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)