summaryrefslogtreecommitdiff
path: root/math/scilab/patches/patch-ad
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2007-03-23 22:08:55 +0000
committerdmcmahill <dmcmahill>2007-03-23 22:08:55 +0000
commita829dbf22f9e71c33ec1a0757b9c735ffe223df3 (patch)
treeb7c9bd0b311bde02a57457a33f40d2a53953eef7 /math/scilab/patches/patch-ad
parent7ce46588a3b2f6b4da7ea78caadfc7f1c5ab39a1 (diff)
downloadpkgsrc-a829dbf22f9e71c33ec1a0757b9c735ffe223df3.tar.gz
Update to scilab-4.1. The old version was very out of date and there
have been many many changes including many bug fixes, graphics improvements, editor improvements, new toolbox functions, etc.
Diffstat (limited to 'math/scilab/patches/patch-ad')
-rw-r--r--math/scilab/patches/patch-ad22
1 files changed, 12 insertions, 10 deletions
diff --git a/math/scilab/patches/patch-ad b/math/scilab/patches/patch-ad
index 58a7a3bbc4f..ffdbff936eb 100644
--- a/math/scilab/patches/patch-ad
+++ b/math/scilab/patches/patch-ad
@@ -1,12 +1,14 @@
-$NetBSD: patch-ad,v 1.8 2005/09/07 10:48:47 dmcmahill Exp $
+$NetBSD: patch-ad,v 1.9 2007/03/23 22:08:56 dmcmahill Exp $
---- tests/Makefile.orig 2004-09-28 08:37:36.000000000 +0000
-+++ tests/Makefile
-@@ -20,6 +20,7 @@ clean ::
- $(RM) foo* test.wav one_man.tst test_macro_exec asave results *.bin
- $(RM) -r .libs libintertest.o libintertest.s* libintertest.la \
- libintertest.lo addinter.o addinter.lo
-+ $(RM) -f Makelib externals.lo libintertest.c loader.sce libext1f.so libext1f.la
-
- distclean:: clean
+--- routines/scicos/evaluate_expr.c.orig 2005-09-23 12:28:00.000000000 +0000
++++ routines/scicos/evaluate_expr.c
+@@ -8,7 +8,8 @@
+ #include <ieeefp.h>
+ int isinf(double x) { return !finite(x) && x==x; }
+ #endif
+-#if defined(__alpha)
++/* NetBSD/alpha already has ininf */
++#if defined(__alpha) && !defined(__NetBSD__)
+ int isinf(double x) { return !finite(x) && x==x; }
+ #endif