diff options
author | tnn <tnn> | 2009-11-01 16:07:10 +0000 |
---|---|---|
committer | tnn <tnn> | 2009-11-01 16:07:10 +0000 |
commit | c03cb5cd7afaace2bbfaed043cbb318443366e43 (patch) | |
tree | f72ee1a8533fcbf5c35fbded9da04ac0b442d1da /math/xlispstat | |
parent | 471a8015c41fbd36e4176cf32efa3285b1bbd2e4 (diff) | |
download | pkgsrc-c03cb5cd7afaace2bbfaed043cbb318443366e43.tar.gz |
NetBSD-current grew fmax(3) too
Diffstat (limited to 'math/xlispstat')
-rw-r--r-- | math/xlispstat/distinfo | 4 | ||||
-rw-r--r-- | math/xlispstat/patches/patch-aa | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/math/xlispstat/distinfo b/math/xlispstat/distinfo index ead4ab24723..de01715a655 100644 --- a/math/xlispstat/distinfo +++ b/math/xlispstat/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.5 2009/08/01 05:24:08 hasso Exp $ +$NetBSD: distinfo,v 1.6 2009/11/01 16:07:10 tnn 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) = 90400468523e559e2405913e51dc9d46653a70e9 +SHA1 (patch-aa) = 86c12bc585c7144a4816fce378f0feee98ca0f64 SHA1 (patch-ac) = 0d7a966ad49e0c4b0173792f2c26262bec65312b SHA1 (patch-ad) = 832133137b104facbd90189e5dd163bb35ff9174 diff --git a/math/xlispstat/patches/patch-aa b/math/xlispstat/patches/patch-aa index 85afe1f0565..14844cde288 100644 --- a/math/xlispstat/patches/patch-aa +++ b/math/xlispstat/patches/patch-aa @@ -1,12 +1,12 @@ -$NetBSD: patch-aa,v 1.3 2009/08/01 05:24:08 hasso Exp $ +$NetBSD: patch-aa,v 1.4 2009/11/01 16:07:10 tnn Exp $ ---- lowess.c.orig 2000-11-25 01:17:38 +0200 -+++ lowess.c 2009-07-31 00:39:55 +0300 +--- lowess.c.orig 2000-11-25 00:17:38.000000000 +0100 ++++ lowess.c @@ -12,7 +12,9 @@ /* forward declarations */ static double pow2 P1H(double); static double pow3 P1H(double x); -+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) ++#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && __NetBSD_Version__ >= 599002100) static double fmax P2H(double, double); +#endif static VOID sort P2H(double *, int); @@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.3 2009/08/01 05:24:08 hasso 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) ++#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && __NetBSD_Version__ >= 599002100) static double fmax P2C(double, x, double, y) { return (x > y ? x : y); } +#endif |