summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--math/octave-current/distinfo3
-rw-r--r--math/octave-current/patches/patch-ab23
2 files changed, 1 insertions, 25 deletions
diff --git a/math/octave-current/distinfo b/math/octave-current/distinfo
index ac37ea9951e..f216a900b95 100644
--- a/math/octave-current/distinfo
+++ b/math/octave-current/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.27 2005/03/22 09:24:29 adam Exp $
+$NetBSD: distinfo,v 1.28 2005/03/26 18:56:21 adam Exp $
SHA1 (octave-2.1.67.tar.bz2) = 1f6eedbf28790d5d5863e940f200e09b0db03ec8
RMD160 (octave-2.1.67.tar.bz2) = 6fe2e1393625e07169d73a253dbaafa181e62f84
Size (octave-2.1.67.tar.bz2) = 5817032 bytes
SHA1 (patch-aa) = e2d8591c222f3b67b5d9798ea349c4d4ce2eae91
-SHA1 (patch-ab) = db51227510dd4ac0a49b8d0bc6882779f8878f68
SHA1 (patch-ac) = 201e5e6a58f6934371daa9ccac8d4f1f01533a4c
SHA1 (patch-ad) = d162862a0e45ddf15de438d8e7b0386ccfe7390e
SHA1 (patch-ae) = 79544d09268d41647b081680fc839f4fe481b111
diff --git a/math/octave-current/patches/patch-ab b/math/octave-current/patches/patch-ab
deleted file mode 100644
index 3752e765daf..00000000000
--- a/math/octave-current/patches/patch-ab
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2005/03/10 12:55:08 dmcmahill Exp $
-
-fix compilation on solaris. Patch taken from octave's cvs
-
---- liboctave/file-ops.cc.orig 2005-02-09 18:11:11.000000000 -0500
-+++ liboctave/file-ops.cc 2005-03-09 07:52:22.689776000 -0500
-@@ -356,7 +356,7 @@
- // directory if the path is not absolute.
-
-- name = octave_env::make_absolute (name);
-+ std::string absolute_name = octave_env::make_absolute (name, octave_env::getcwd() );
-
-- size_t resolved_size = name.length ();
-+ size_t resolved_size = absolute_name.length ();
-
- while (1)
-@@ -366,5 +366,5 @@
- OCTAVE_LOCAL_BUFFER (char, resolved, resolved_size);
-
-- resolved_len = ::resolvepath (name, resolved, resolved_size);
-+ int resolved_len = ::resolvepath (absolute_name.c_str(), resolved, resolved_size);
-
- if (resolved_len < 0)