patches/mpfr/2.4.1/130-vasprintf-mp_limb_t.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
     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  }