diff options
author | joerg <joerg> | 2012-11-23 12:11:00 +0000 |
---|---|---|
committer | joerg <joerg> | 2012-11-23 12:11:00 +0000 |
commit | 2048309ec044d8707af0f055b196227182f12f43 (patch) | |
tree | 686fdbf3730b78997a71829fd86d56110425c396 | |
parent | 83dff00a3724f31222197cf89cac50886391cfaa (diff) | |
download | pkgsrc-2048309ec044d8707af0f055b196227182f12f43.tar.gz |
Can't use const with non-default constructor.
-rw-r--r-- | math/yacas/distinfo | 3 | ||||
-rw-r--r-- | math/yacas/patches/patch-src_grower.h | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/math/yacas/distinfo b/math/yacas/distinfo index fbf75a9e7ca..72fda1d459d 100644 --- a/math/yacas/distinfo +++ b/math/yacas/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.11 2011/12/05 22:50:25 joerg Exp $ +$NetBSD: distinfo,v 1.12 2012/11/23 12:11:00 joerg Exp $ SHA1 (yacas-1.2.2.tar.gz) = 8e753c22c207a5aa5e9fd2a9d519605d5b73d5b9 RMD160 (yacas-1.2.2.tar.gz) = 6c49ca60e4f1f92e7d30e8d91b6126e55d77321b Size (yacas-1.2.2.tar.gz) = 1203303 bytes SHA1 (patch-manmake_manripper.cpp) = c474c025f10b58517676e4146d6f0b58eff5a65a +SHA1 (patch-src_grower.h) = a2dd133c2b5b5326f9cc242e04e5fc80df104211 diff --git a/math/yacas/patches/patch-src_grower.h b/math/yacas/patches/patch-src_grower.h new file mode 100644 index 00000000000..94ea096079d --- /dev/null +++ b/math/yacas/patches/patch-src_grower.h @@ -0,0 +1,13 @@ +$NetBSD: patch-src_grower.h,v 1.1 2012/11/23 12:11:00 joerg Exp $ + +--- src/grower.h.orig 2012-11-19 16:51:08.000000000 +0000 ++++ src/grower.h +@@ -127,7 +127,7 @@ public: + { + if (iSize) + { +- const TOps opers; ++ TOps opers; + if(!opers.isPOD()) + { + while (iSize) |