aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bc/patches
diff options
context:
space:
mode:
authorNick Hainke <vincent@systemli.org>2022-10-21 22:23:47 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2022-10-22 22:50:37 +0200
commita8bbce498e9fab4fc11ab2b126c932929a27be0f (patch)
tree9f821ad005a503646fcd10f014661aae82a9e657 /tools/bc/patches
parent1699ace3a4f97a1b971c4f92e13321000172da9c (diff)
downloadupstream-a8bbce498e9fab4fc11ab2b126c932929a27be0f.tar.gz
upstream-a8bbce498e9fab4fc11ab2b126c932929a27be0f.tar.bz2
upstream-a8bbce498e9fab4fc11ab2b126c932929a27be0f.zip
tools/bc: update to 1.07.1
Changes: Fixed ibase extension causing problems for read() Fixed parallel make problem. Remove the "003-bc-fix-hang.patch" because the hang is fixed upstream. Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'tools/bc/patches')
-rw-r--r--tools/bc/patches/003-bc-fix-hang.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/bc/patches/003-bc-fix-hang.patch b/tools/bc/patches/003-bc-fix-hang.patch
deleted file mode 100644
index ba297051e2..0000000000
--- a/tools/bc/patches/003-bc-fix-hang.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/bc/execute.c
-+++ b/bc/execute.c
-@@ -595,7 +595,7 @@ input_char (void)
- if (in_ch == '.' || in_ch == '+' || in_ch == '-')
- return (in_ch);
- if (in_ch <= ' ')
-- return (' ');
-+ return (':');
-
- return (':');
- }