qi: Fix 'rootdir' value, include post-install from proper location
[dragora.git] / patches / mpfr / allpatches
blobea51e2975385e12e525c3ab9b098088fbcee2e07
1 diff -Naurd mpfr-4.0.2-a/PATCHES mpfr-4.0.2-b/PATCHES
2 --- mpfr-4.0.2-a/PATCHES        2019-06-02 17:05:36.121226916 +0000
3 +++ mpfr-4.0.2-b/PATCHES        2019-06-02 17:05:36.157226621 +0000
4 @@ -0,0 +1 @@
5 +include-float
6 diff -Naurd mpfr-4.0.2-a/VERSION mpfr-4.0.2-b/VERSION
7 --- mpfr-4.0.2-a/VERSION        2019-01-31 20:29:48.000000000 +0000
8 +++ mpfr-4.0.2-b/VERSION        2019-06-02 17:05:36.157226621 +0000
9 @@ -1 +1 @@
10 -4.0.2
11 +4.0.2-p1
12 diff -Naurd mpfr-4.0.2-a/src/mpfr-impl.h mpfr-4.0.2-b/src/mpfr-impl.h
13 --- mpfr-4.0.2-a/src/mpfr-impl.h        2019-01-27 18:30:16.000000000 +0000
14 +++ mpfr-4.0.2-b/src/mpfr-impl.h        2019-06-02 17:05:36.145226719 +0000
15 @@ -57,6 +57,7 @@
17  #include <stdlib.h>
18  #include <limits.h>
19 +#include <float.h>  /* for FLT_RADIX, etc., tested below */
22  /******************************************************
23 diff -Naurd mpfr-4.0.2-a/src/mpfr.h mpfr-4.0.2-b/src/mpfr.h
24 --- mpfr-4.0.2-a/src/mpfr.h     2019-01-31 20:29:48.000000000 +0000
25 +++ mpfr-4.0.2-b/src/mpfr.h     2019-06-02 17:05:36.153226653 +0000
26 @@ -27,7 +27,7 @@
27  #define MPFR_VERSION_MAJOR 4
28  #define MPFR_VERSION_MINOR 0
29  #define MPFR_VERSION_PATCHLEVEL 2
30 -#define MPFR_VERSION_STRING "4.0.2"
31 +#define MPFR_VERSION_STRING "4.0.2-p1"
33  /* User macros:
34     MPFR_USE_FILE:        Define it to make MPFR define functions dealing
35 diff -Naurd mpfr-4.0.2-a/src/version.c mpfr-4.0.2-b/src/version.c
36 --- mpfr-4.0.2-a/src/version.c  2019-01-31 20:29:48.000000000 +0000
37 +++ mpfr-4.0.2-b/src/version.c  2019-06-02 17:05:36.153226653 +0000
38 @@ -25,5 +25,5 @@
39  const char *
40  mpfr_get_version (void)
41  {
42 -  return "4.0.2";
43 +  return "4.0.2-p1";
44  }