mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
809963a064
-------- diffstat follows -------- /trunk/patches/mpfr/2.4.1/120-cast-to-void-ptr.patch | 25 25 0 0 ++++++++++++ /trunk/patches/mpfr/2.4.1/130-vasprintf-mp_limb_t.patch | 45 45 0 0 ++++++++++++++++++++++ /trunk/patches/mpfr/2.4.1/140-zeta_ui-shift.patch | 47 47 0 0 +++++++++++++++++++++++ 3 files changed, 117 insertions(+)
46 lines
1.8 KiB
Diff
46 lines
1.8 KiB
Diff
diff -Naurd mpfr-2.4.1-a/PATCHES mpfr-2.4.1-b/PATCHES
|
|
--- mpfr-2.4.1-a/PATCHES 2009-03-10 01:44:39.000000000 +0000
|
|
+++ mpfr-2.4.1-b/PATCHES 2009-03-10 01:44:40.000000000 +0000
|
|
@@ -0,0 +1 @@
|
|
+vasprintf-mp_limb_t
|
|
diff -Naurd mpfr-2.4.1-a/VERSION mpfr-2.4.1-b/VERSION
|
|
--- mpfr-2.4.1-a/VERSION 2009-03-04 13:16:46.000000000 +0000
|
|
+++ mpfr-2.4.1-b/VERSION 2009-03-10 01:44:40.000000000 +0000
|
|
@@ -1 +1 @@
|
|
-2.4.1-p2
|
|
+2.4.1-p4
|
|
diff -Naurd mpfr-2.4.1-a/mpfr.h mpfr-2.4.1-b/mpfr.h
|
|
--- mpfr-2.4.1-a/mpfr.h 2009-03-04 13:16:46.000000000 +0000
|
|
+++ mpfr-2.4.1-b/mpfr.h 2009-03-10 01:44:40.000000000 +0000
|
|
@@ -27,7 +27,7 @@
|
|
#define MPFR_VERSION_MAJOR 2
|
|
#define MPFR_VERSION_MINOR 4
|
|
#define MPFR_VERSION_PATCHLEVEL 1
|
|
-#define MPFR_VERSION_STRING "2.4.1-p2"
|
|
+#define MPFR_VERSION_STRING "2.4.1-p4"
|
|
|
|
/* Macros dealing with MPFR VERSION */
|
|
#define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
|
|
diff -Naurd mpfr-2.4.1-a/vasprintf.c mpfr-2.4.1-b/vasprintf.c
|
|
--- mpfr-2.4.1-a/vasprintf.c 2009-02-20 09:43:17.000000000 +0000
|
|
+++ mpfr-2.4.1-b/vasprintf.c 2009-03-10 01:44:40.000000000 +0000
|
|
@@ -398,7 +398,7 @@
|
|
(void) va_arg ((ap), mpq_srcptr); \
|
|
break; \
|
|
case MP_LIMB_ARG: \
|
|
- (void) va_arg ((ap), mp_ptr); \
|
|
+ (void) va_arg ((ap), mp_limb_t); \
|
|
break; \
|
|
case MP_LIMB_ARRAY_ARG: \
|
|
(void) va_arg ((ap), mp_ptr); \
|
|
diff -Naurd mpfr-2.4.1-a/version.c mpfr-2.4.1-b/version.c
|
|
--- mpfr-2.4.1-a/version.c 2009-03-04 13:16:46.000000000 +0000
|
|
+++ mpfr-2.4.1-b/version.c 2009-03-10 01:44:40.000000000 +0000
|
|
@@ -25,5 +25,5 @@
|
|
const char *
|
|
mpfr_get_version (void)
|
|
{
|
|
- return "2.4.1-p2";
|
|
+ return "2.4.1-p4";
|
|
}
|