summaryrefslogtreecommitdiff
path: root/misc/kdeedu4/patches/patch-ab
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2012-03-20 08:56:16 +0000
committermarkd <markd@pkgsrc.org>2012-03-20 08:56:16 +0000
commit6c38063350b5586d8b79a2c8a40c8bbd48069927 (patch)
tree02285e811940e3da93e04d6ece7ef1d85c82a623 /misc/kdeedu4/patches/patch-ab
parentcb6523b954dc606869d666c15a3823ec0b1f1d26 (diff)
downloadpkgsrc-6c38063350b5586d8b79a2c8a40c8bbd48069927.tar.gz
Update to KDE SC 4.8.0.
remove kdeedu4
Diffstat (limited to 'misc/kdeedu4/patches/patch-ab')
-rw-r--r--misc/kdeedu4/patches/patch-ab30
1 files changed, 0 insertions, 30 deletions
diff --git a/misc/kdeedu4/patches/patch-ab b/misc/kdeedu4/patches/patch-ab
deleted file mode 100644
index 7013023471b..00000000000
--- a/misc/kdeedu4/patches/patch-ab
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2009/10/02 20:51:26 markd Exp $
-
---- kmplot/kmplot/parser.cpp.orig 2008-11-29 04:33:54.000000000 +1300
-+++ kmplot/kmplot/parser.cpp
-@@ -102,9 +102,13 @@ ScalarFunction Parser::scalarFunctions[
- {"floor", 0, floor}, // round down to nearest integer
- {"ceil", 0, ceil}, // round up to nearest integer
- {"round", 0, round}, // round to nearest integer
-+#ifndef __NetBSD__
- {"gamma", 0, tgamma}, // gamma function
-+#endif
- {"lgamma", 0, lgamma}, // log-gamma function
-+#ifndef __NetBSD__
- {"factorial", 0, factorial}, // factorial
-+#endif
- {"erfc", 0, lerfc}, // error function
- {"erf", 0, lerf}, // complementary error function
-
-@@ -1340,9 +1344,11 @@ double larcsin(double x) {
- double larctan(double x) {
- return atan(x) / Parser::radiansPerAngleUnit();
- }
-+#ifndef __NetBSD__
- double factorial( double x ) {
- return tgamma(x+1);
- }
-+#endif
- double legendre0( double ) {
- return 1.0;
- }