patches/mpfr/2.4.1/130-vasprintf-mp_limb_t.patch
author Remy Bohmer <linux@bohmer.net>
Thu May 27 23:18:19 2010 +0200 (2010-05-27)
changeset 2060 51e4597b07fc
permissions -rw-r--r--
scripts: add option to strip all toolchain executables

To reduce filesizes of the toolchain and even improve build times
of projects to be build with this toolchain it is usefull to strip
the delivered toolchain executables. Since it is not likely that we
will debug the toolchain executables itself we do not need the
debug information inside the executables itself.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
     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  }