summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2001-04-19 00:13:14 +0000
committerdmcmahill <dmcmahill>2001-04-19 00:13:14 +0000
commit064a6665f4fbf08fab572d91cb795dbefa04cf20 (patch)
tree6b1d163ee3b219bf9c46f46ef85ddc20b1e834ba
parentb10c890efd50f572f546fbb255960e3b30ba8117 (diff)
downloadpkgsrc-064a6665f4fbf08fab572d91cb795dbefa04cf20.tar.gz
__alpha__ doesn't imply OSF so doen't include OSF specific code based
on __alpha__.
-rw-r--r--math/octave-current/distinfo4
-rw-r--r--math/octave-current/patches/patch-al11
2 files changed, 14 insertions, 1 deletions
diff --git a/math/octave-current/distinfo b/math/octave-current/distinfo
index 52577c71fc7..ccf3e711bf9 100644
--- a/math/octave-current/distinfo
+++ b/math/octave-current/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1 2001/04/17 11:35:25 agc Exp $
+$NetBSD: distinfo,v 1.2 2001/04/19 00:13:14 dmcmahill Exp $
SHA1 (octave-2.1.33.tar.bz2) = 15a07d08647a2c2aeedb31917ac41ed3b7bb4245
+Size (octave-2.1.33.tar.bz2) = 3740256 bytes
SHA1 (patch-aa) = 92a3ee9859884768036cee30dee0370f8eec3e9d
SHA1 (patch-ab) = 99b395668fd8a48ec03e47f2d24613128c0289da
SHA1 (patch-ac) = b565c7694d7ea3af80744081d0a2cb6306eb9c68
@@ -12,3 +13,4 @@ SHA1 (patch-ah) = 3c5d82b3bd05766eb22987debe6fdb1447a92ae3
SHA1 (patch-ai) = 248dbc97c2233c47dc532f86b0fb2fd3ebd18068
SHA1 (patch-aj) = 8e2bbe9afde5567540b32fc183f58b87fbf9a547
SHA1 (patch-ak) = b998dfe27accebec38cffa38555a3e32932c0c07
+SHA1 (patch-al) = 63e3a5931ff80e8758546ac8bb5579e23d96872b
diff --git a/math/octave-current/patches/patch-al b/math/octave-current/patches/patch-al
new file mode 100644
index 00000000000..1ad57046192
--- /dev/null
+++ b/math/octave-current/patches/patch-al
@@ -0,0 +1,11 @@
+$NetBSD: patch-al,v 1.1 2001/04/19 00:13:14 dmcmahill Exp $
+
+--- liboctave/lo-ieee.cc.orig Tue Jan 25 16:23:09 2000
++++ liboctave/lo-ieee.cc Wed Apr 18 19:36:20 2001
+@@ -65,5 +65,5 @@
+ double tmp = 1.0;
+ octave_Inf = 1.0 / (tmp - tmp);
+-#elif defined (__alpha__) && ! defined (linux)
++#elif defined (__alpha__) && defined (__osf__)
+ extern unsigned int DINFINITY[2];
+ octave_Inf = (*(X_CAST(double *, DINFINITY)));