summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authormarkd <markd>2011-01-29 22:28:01 +0000
committermarkd <markd>2011-01-29 22:28:01 +0000
commit20f73c56dc12ca3d62826a7eaaa48e5b83c77f97 (patch)
treef9032a41fc8b23ae0cae52d5b356a0b32697a160 /math
parent90b15f734f889a585d2490f963e7b9f53f9157d1 (diff)
downloadpkgsrc-20f73c56dc12ca3d62826a7eaaa48e5b83c77f97.tar.gz
linux also has fmax()
Diffstat (limited to 'math')
-rw-r--r--math/xlispstat/distinfo4
-rw-r--r--math/xlispstat/patches/patch-aa6
2 files changed, 5 insertions, 5 deletions
diff --git a/math/xlispstat/distinfo b/math/xlispstat/distinfo
index 71999c4a8e6..7300552c793 100644
--- a/math/xlispstat/distinfo
+++ b/math/xlispstat/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.7 2010/10/03 12:53:47 obache Exp $
+$NetBSD: distinfo,v 1.8 2011/01/29 22:28:01 markd Exp $
SHA1 (xlispstat-3-52-20.tar.gz) = a62c353ce136ba7111536457272fa20f82ae23e0
RMD160 (xlispstat-3-52-20.tar.gz) = 834442693df99692c80efd6149315639329379c4
Size (xlispstat-3-52-20.tar.gz) = 1527951 bytes
-SHA1 (patch-aa) = 8cbacc89c180aab353a0e1cd9e6c636998d4c9c1
+SHA1 (patch-aa) = 84eb15a37fadad963ed125e0bf0b2ff826a0937a
SHA1 (patch-ac) = 0d7a966ad49e0c4b0173792f2c26262bec65312b
SHA1 (patch-ad) = 832133137b104facbd90189e5dd163bb35ff9174
diff --git a/math/xlispstat/patches/patch-aa b/math/xlispstat/patches/patch-aa
index 8fee46fc3fb..a8722846812 100644
--- a/math/xlispstat/patches/patch-aa
+++ b/math/xlispstat/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.5 2010/10/03 12:53:47 obache Exp $
+$NetBSD: patch-aa,v 1.6 2011/01/29 22:28:02 markd Exp $
--- lowess.c.orig 2000-11-25 00:17:38.000000000 +0100
+++ lowess.c
@@ -6,7 +6,7 @@ $NetBSD: patch-aa,v 1.5 2010/10/03 12:53:47 obache Exp $
/* forward declarations */
static double pow2 P1H(double);
static double pow3 P1H(double x);
-+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && (__NetBSD_Version__ >= 599002100 || (__NetBSD_Version__ >= 501000000 && __NetBSD_Version__ < 599000000)))
++#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && (__NetBSD_Version__ >= 599002100 || (__NetBSD_Version__ >= 501000000 && __NetBSD_Version__ < 599000000))) && !defined(__linux__)
static double fmax P2H(double, double);
+#endif
static VOID sort P2H(double *, int);
@@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.5 2010/10/03 12:53:47 obache Exp $
static double pow2 P1C(double, x) { return(x * x); }
static double pow3 P1C(double, x) { return(x * x * x); }
-+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && (__NetBSD_Version__ >= 599002100 || (__NetBSD_Version__ >= 501000000 && __NetBSD_Version__ < 599000000)))
++#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && (__NetBSD_Version__ >= 599002100 || (__NetBSD_Version__ >= 501000000 && __NetBSD_Version__ < 599000000))) && !defined(__linux__)
static double fmax P2C(double, x, double, y) { return (x > y ? x : y); }
+#endif