summaryrefslogtreecommitdiffstats
path: root/source/l/mpfr/patches/patch11
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-08-22 19:28:18 +0000
committer Eric Hameleers <alien@slackware.com>2023-08-22 22:02:22 +0200
commit914a56744e40ec314e04a8ffeb1525237bed57dd (patch)
tree1fd15af7f22fd1d806d781ea3ac074ba80b85e0f /source/l/mpfr/patches/patch11
parent407ed78e9048699b471cb5ffbb7c3fba3cc2b98b (diff)
downloadcurrent-914a56744e40ec314e04a8ffeb1525237bed57dd.tar.gz
current-914a56744e40ec314e04a8ffeb1525237bed57dd.tar.xz
Tue Aug 22 19:28:18 UTC 202320230822192818
l/mpfr-4.2.1-x86_64-1.txz: Upgraded. l/pipewire-0.3.78-x86_64-1.txz: Upgraded. n/getmail-6.18.13-x86_64-1.txz: Upgraded. x/ibus-anthy-1.5.15-x86_64-1.txz: Upgraded. x/ibus-m17n-1.4.22-x86_64-1.txz: Upgraded. x/ibus-table-1.17.2-x86_64-1.txz: Upgraded. x/libime-1.1.0-x86_64-1.txz: Upgraded. xfce/xfce4-terminal-1.1.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/mpfr/patches/patch11')
-rw-r--r--source/l/mpfr/patches/patch1152
1 files changed, 0 insertions, 52 deletions
diff --git a/source/l/mpfr/patches/patch11 b/source/l/mpfr/patches/patch11
deleted file mode 100644
index 15c983638..000000000
--- a/source/l/mpfr/patches/patch11
+++ /dev/null
@@ -1,52 +0,0 @@
-diff -Naurd mpfr-4.2.0-a/PATCHES mpfr-4.2.0-b/PATCHES
---- mpfr-4.2.0-a/PATCHES 2023-07-17 13:56:17.375566485 +0000
-+++ mpfr-4.2.0-b/PATCHES 2023-07-17 13:56:17.415565464 +0000
-@@ -0,0 +1 @@
-+inp_str-nullchar
-diff -Naurd mpfr-4.2.0-a/VERSION mpfr-4.2.0-b/VERSION
---- mpfr-4.2.0-a/VERSION 2023-07-17 13:54:11.170788387 +0000
-+++ mpfr-4.2.0-b/VERSION 2023-07-17 13:56:17.415565464 +0000
-@@ -1 +1 @@
--4.2.0-p10
-+4.2.0-p11
-diff -Naurd mpfr-4.2.0-a/src/inp_str.c mpfr-4.2.0-b/src/inp_str.c
---- mpfr-4.2.0-a/src/inp_str.c 2023-01-05 17:09:48.000000000 +0000
-+++ mpfr-4.2.0-b/src/inp_str.c 2023-07-17 13:56:17.407565669 +0000
-@@ -69,6 +69,15 @@
- if (c == EOF || isspace (c))
- break;
- str[str_size++] = (unsigned char) c;
-+ /* If c is '\0' (while not being a whitespace character), the word will
-+ not have a valid format. But in the context of a string in memory,
-+ '\0' is a terminating null character. So, to avoid ending with a
-+ valid string format (like "1" with ignored characters after the
-+ terminating null character), we need to make sure that the string
-+ does not have a valid format; so let's start it with '*'. Note
-+ that we should read the full word, so we cannot break. */
-+ if (MPFR_UNLIKELY (c == '\0'))
-+ str[0] = '*';
- if (str_size == (size_t) -1)
- break;
- c = getc (stream);
-diff -Naurd mpfr-4.2.0-a/src/mpfr.h mpfr-4.2.0-b/src/mpfr.h
---- mpfr-4.2.0-a/src/mpfr.h 2023-07-17 13:54:11.170788387 +0000
-+++ mpfr-4.2.0-b/src/mpfr.h 2023-07-17 13:56:17.411565566 +0000
-@@ -27,7 +27,7 @@
- #define MPFR_VERSION_MAJOR 4
- #define MPFR_VERSION_MINOR 2
- #define MPFR_VERSION_PATCHLEVEL 0
--#define MPFR_VERSION_STRING "4.2.0-p10"
-+#define MPFR_VERSION_STRING "4.2.0-p11"
-
- /* User macros:
- MPFR_USE_FILE: Define it to make MPFR define functions dealing
-diff -Naurd mpfr-4.2.0-a/src/version.c mpfr-4.2.0-b/src/version.c
---- mpfr-4.2.0-a/src/version.c 2023-07-17 13:54:11.170788387 +0000
-+++ mpfr-4.2.0-b/src/version.c 2023-07-17 13:56:17.415565464 +0000
-@@ -25,5 +25,5 @@
- const char *
- mpfr_get_version (void)
- {
-- return "4.2.0-p10";
-+ return "4.2.0-p11";
- }