patches/mpfr/2.4.1/130-vasprintf-mp_limb_t.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sat Jan 04 01:02:57 2014 +0100 (2014-01-04)
changeset 3271 c65dc9b98841
permissions -rw-r--r--
cc/gcc: diable libsanitizer without NPTL

gcc-4.8 comes with a new library to sanitise memory access:
- heap-, stack-, and global-buffer overflow, use-after-free
- data-races between threads

This library requires some _np parts of the API, which are not
implemented in the (old) LinuxThreads, which is still available
in uClibc.

Since NPTL requires a i486 or above, i386 are stuck with using LT,
which precludes building the libsanitizer.

Disable libsanitizer, a bit like libatomic is.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Niels Penneman <niels@penneman.org>
     1 diff -Naurd mpfr-2.4.1-a/PATCHES mpfr-2.4.1-b/PATCHES
     2 --- mpfr-2.4.1-a/PATCHES	2009-03-10 01:44:39.000000000 +0000
     3 +++ mpfr-2.4.1-b/PATCHES	2009-03-10 01:44:40.000000000 +0000
     4 @@ -0,0 +1 @@
     5 +vasprintf-mp_limb_t
     6 diff -Naurd mpfr-2.4.1-a/VERSION mpfr-2.4.1-b/VERSION
     7 --- mpfr-2.4.1-a/VERSION	2009-03-04 13:16:46.000000000 +0000
     8 +++ mpfr-2.4.1-b/VERSION	2009-03-10 01:44:40.000000000 +0000
     9 @@ -1 +1 @@
    10 -2.4.1-p2
    11 +2.4.1-p4
    12 diff -Naurd mpfr-2.4.1-a/mpfr.h mpfr-2.4.1-b/mpfr.h
    13 --- mpfr-2.4.1-a/mpfr.h	2009-03-04 13:16:46.000000000 +0000
    14 +++ mpfr-2.4.1-b/mpfr.h	2009-03-10 01:44:40.000000000 +0000
    15 @@ -27,7 +27,7 @@
    16  #define MPFR_VERSION_MAJOR 2
    17  #define MPFR_VERSION_MINOR 4
    18  #define MPFR_VERSION_PATCHLEVEL 1
    19 -#define MPFR_VERSION_STRING "2.4.1-p2"
    20 +#define MPFR_VERSION_STRING "2.4.1-p4"
    21  
    22  /* Macros dealing with MPFR VERSION */
    23  #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
    24 diff -Naurd mpfr-2.4.1-a/vasprintf.c mpfr-2.4.1-b/vasprintf.c
    25 --- mpfr-2.4.1-a/vasprintf.c	2009-02-20 09:43:17.000000000 +0000
    26 +++ mpfr-2.4.1-b/vasprintf.c	2009-03-10 01:44:40.000000000 +0000
    27 @@ -398,7 +398,7 @@
    28          (void) va_arg ((ap), mpq_srcptr);       \
    29          break;                                  \
    30        case MP_LIMB_ARG:                         \
    31 -        (void) va_arg ((ap), mp_ptr);           \
    32 +        (void) va_arg ((ap), mp_limb_t);        \
    33          break;                                  \
    34        case MP_LIMB_ARRAY_ARG:                   \
    35          (void) va_arg ((ap), mp_ptr);           \
    36 diff -Naurd mpfr-2.4.1-a/version.c mpfr-2.4.1-b/version.c
    37 --- mpfr-2.4.1-a/version.c	2009-03-04 13:16:46.000000000 +0000
    38 +++ mpfr-2.4.1-b/version.c	2009-03-10 01:44:40.000000000 +0000
    39 @@ -25,5 +25,5 @@
    40  const char *
    41  mpfr_get_version (void)
    42  {
    43 -  return "2.4.1-p2";
    44 +  return "2.4.1-p4";
    45  }