summaryrefslogtreecommitdiff
path: root/math/qalculate
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2020-03-18 17:57:30 +0000
committerjoerg <joerg@pkgsrc.org>2020-03-18 17:57:30 +0000
commit7bfce125bd913df48ad560c50d28e8171180b515 (patch)
tree11e19027a4f417ac810be2ab171c8090d3efa30b /math/qalculate
parenta744ccd8be000bc8c94300f7b8884000f0b91a71 (diff)
downloadpkgsrc-7bfce125bd913df48ad560c50d28e8171180b515.tar.gz
Help the compiler find the right insert
Diffstat (limited to 'math/qalculate')
-rw-r--r--math/qalculate/distinfo3
-rw-r--r--math/qalculate/patches/patch-libqalculate_Number.cc16
2 files changed, 18 insertions, 1 deletions
diff --git a/math/qalculate/distinfo b/math/qalculate/distinfo
index 59ec7cfc7ee..44ca7fe3e42 100644
--- a/math/qalculate/distinfo
+++ b/math/qalculate/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.25 2019/12/09 09:31:06 nros Exp $
+$NetBSD: distinfo,v 1.26 2020/03/18 17:57:30 joerg Exp $
SHA1 (libqalculate-3.5.0a.tar.gz) = fcf76bc5a74236bff5b6ae6f0543ab13296bc34d
RMD160 (libqalculate-3.5.0a.tar.gz) = 6152daebee96026ffae7349198e72f991d85f5eb
SHA512 (libqalculate-3.5.0a.tar.gz) = 1af5cdbcac8161aaf3fec56830bebd933b60537d1a27beab01039a4232e20e54c044c799cb1681d31b63c1b8a31f5902bcfa328a25f313566bf6171577430071
Size (libqalculate-3.5.0a.tar.gz) = 2126070 bytes
SHA1 (patch-configure.ac) = f5241d62bbc3f278d30813d8305c28c10b207b00
+SHA1 (patch-libqalculate_Number.cc) = 12fe1a6be524c0a1cf34c02f97ac862138c5ab91
SHA1 (patch-libqalculate_util.cc) = 300e2dd75c28ae2fdfb95ece96b400d5d67a3aac
diff --git a/math/qalculate/patches/patch-libqalculate_Number.cc b/math/qalculate/patches/patch-libqalculate_Number.cc
new file mode 100644
index 00000000000..05be5c7dbad
--- /dev/null
+++ b/math/qalculate/patches/patch-libqalculate_Number.cc
@@ -0,0 +1,16 @@
+$NetBSD: patch-libqalculate_Number.cc,v 1.1 2020/03/18 17:57:31 joerg Exp $
+
+Ensure that the third argument is the base type of the string,
+so that insert is unambigous from the iterator variation.
+
+--- libqalculate/Number.cc.orig 2020-03-15 17:27:02.908147193 +0000
++++ libqalculate/Number.cc
+@@ -7723,7 +7723,7 @@ string Number::print(const PrintOptions
+ nra *= 26;
+ nra = nr - nra;
+ nr = nri;
+- str.insert(0, 1, ('A' + nra.intValue() - 1));
++ str.insert(0, 1, char('A' + nra.intValue() - 1));
+ } while(!nr.isZero());
+ if(ips.minus) {
+ *ips.minus = neg;