patches/mpfr/2.4.1/110-assert.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.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-04 13:15:05.000000000 +0000
     3 +++ mpfr-2.4.1-b/PATCHES	2009-03-04 13:17:04.000000000 +0000
     4 @@ -0,0 +1 @@
     5 +assert
     6 diff -Naurd mpfr-2.4.1-a/VERSION mpfr-2.4.1-b/VERSION
     7 --- mpfr-2.4.1-a/VERSION	2009-02-27 16:55:37.000000000 +0000
     8 +++ mpfr-2.4.1-b/VERSION	2009-03-04 13:16:46.000000000 +0000
     9 @@ -1 +1 @@
    10 -2.4.1-p1
    11 +2.4.1-p2
    12 diff -Naurd mpfr-2.4.1-a/mpfr-gmp.c mpfr-2.4.1-b/mpfr-gmp.c
    13 --- mpfr-2.4.1-a/mpfr-gmp.c	2009-02-20 09:43:17.000000000 +0000
    14 +++ mpfr-2.4.1-b/mpfr-gmp.c	2009-03-04 13:16:39.000000000 +0000
    15 @@ -301,7 +301,7 @@
    16        if (linenum != -1)
    17          fprintf (stderr, "%d: ", linenum);
    18      }
    19 -  fprintf (stderr, " assertion failed: %s\n", expr);
    20 +  fprintf (stderr, "MPFR assertion failed: %s\n", expr);
    21    abort();
    22  }
    23  
    24 diff -Naurd mpfr-2.4.1-a/mpfr.h mpfr-2.4.1-b/mpfr.h
    25 --- mpfr-2.4.1-a/mpfr.h	2009-02-27 16:55:38.000000000 +0000
    26 +++ mpfr-2.4.1-b/mpfr.h	2009-03-04 13:16:46.000000000 +0000
    27 @@ -27,7 +27,7 @@
    28  #define MPFR_VERSION_MAJOR 2
    29  #define MPFR_VERSION_MINOR 4
    30  #define MPFR_VERSION_PATCHLEVEL 1
    31 -#define MPFR_VERSION_STRING "2.4.1-p1"
    32 +#define MPFR_VERSION_STRING "2.4.1-p2"
    33  
    34  /* Macros dealing with MPFR VERSION */
    35  #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
    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-02-27 16:55:38.000000000 +0000
    38 +++ mpfr-2.4.1-b/version.c	2009-03-04 13:16:46.000000000 +0000
    39 @@ -25,5 +25,5 @@
    40  const char *
    41  mpfr_get_version (void)
    42  {
    43 -  return "2.4.1-p1";
    44 +  return "2.4.1-p2";
    45  }