Sat Aug 1 05:24:08 2009 UTC ()
Make it build on recent DragonFly.


(hasso)
diff -r1.4 -r1.5 pkgsrc/math/xlispstat/distinfo
diff -r0 -r1.3 pkgsrc/math/xlispstat/patches/patch-aa

cvs diff -r1.4 -r1.5 pkgsrc/math/xlispstat/distinfo (expand / switch to unified diff)

--- pkgsrc/math/xlispstat/distinfo 2008/03/07 16:48:02 1.4
+++ pkgsrc/math/xlispstat/distinfo 2009/08/01 05:24:08 1.5
@@ -1,7 +1,8 @@ @@ -1,7 +1,8 @@
1$NetBSD: distinfo,v 1.4 2008/03/07 16:48:02 jlam Exp $ 1$NetBSD: distinfo,v 1.5 2009/08/01 05:24:08 hasso Exp $
2 2
3SHA1 (xlispstat-3-52-20.tar.gz) = a62c353ce136ba7111536457272fa20f82ae23e0 3SHA1 (xlispstat-3-52-20.tar.gz) = a62c353ce136ba7111536457272fa20f82ae23e0
4RMD160 (xlispstat-3-52-20.tar.gz) = 834442693df99692c80efd6149315639329379c4 4RMD160 (xlispstat-3-52-20.tar.gz) = 834442693df99692c80efd6149315639329379c4
5Size (xlispstat-3-52-20.tar.gz) = 1527951 bytes 5Size (xlispstat-3-52-20.tar.gz) = 1527951 bytes
 6SHA1 (patch-aa) = 90400468523e559e2405913e51dc9d46653a70e9
6SHA1 (patch-ac) = 0d7a966ad49e0c4b0173792f2c26262bec65312b 7SHA1 (patch-ac) = 0d7a966ad49e0c4b0173792f2c26262bec65312b
7SHA1 (patch-ad) = 832133137b104facbd90189e5dd163bb35ff9174 8SHA1 (patch-ad) = 832133137b104facbd90189e5dd163bb35ff9174

File Added: pkgsrc/math/xlispstat/patches/patch-aa
$NetBSD: patch-aa,v 1.3 2009/08/01 05:24:08 hasso Exp $

--- lowess.c.orig	2000-11-25 01:17:38 +0200
+++ lowess.c	2009-07-31 00:39:55 +0300
@@ -12,7 +12,9 @@
 /* forward declarations */
 static double pow2 P1H(double);
 static double pow3 P1H(double x);
+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204)
 static double fmax P2H(double, double);
+#endif
 static VOID sort P2H(double *, int);
 static VOID lowest P11H(double *, double *, int, double, double *,
                         int, int, double *, int, double *, int *);
@@ -20,7 +22,9 @@ static VOID lowest P11H(double *, double
 
 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)
 static double fmax P2C(double, x, double, y) { return (x > y ? x : y); }
+#endif
 
 int lowess P9C(double *, x, double *, y, int, n, double, f, int, nsteps, double, delta,
                double *, ys, double *, rw, double *, res)