summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortaca <taca>2003-03-24 14:49:39 +0000
committertaca <taca>2003-03-24 14:49:39 +0000
commit6e9607bfb8193c77d58ad0e1daa2ef4778e80830 (patch)
tree76e1ca65da5a7b402af0b3b4e4b58aa1127f80a8 /lang
parentd9894347d47c2b2068fabe702fc919a209d4767b (diff)
downloadpkgsrc-6e9607bfb8193c77d58ad0e1daa2ef4778e80830.tar.gz
Update ruby-base packages to 1.6.8. This is bug fix release of ruby
programming language. Since change from ruby 1.6.7 to 1.6.8 are to huge (>= 47K bytes), I omit includes here. This update implicitly includes ruby-gdbm, ruby-readline, ruby-tk and ruby package. Here is pkgsrc change. - Support pkgsrc on Solaris. * change RUBY_ARCH default value to ${LOWER_ARCH}-${LOWER_OPSYS}${APPEND_ELF} for fixing Solairs support. * Add RUBY_NOSHLIBMAJOR. (needs more better scheme..?) * Change RUBY_SHLIBVER. * patch config.sub to proper RUBY_ARCH generation. - Change RUBY_COMMENT to meaningful names; RUBY_NOEXT_CURSES and RUBY_NOEXT_DBM. - Remove patch-ak since it was fixed in original source.
Diffstat (limited to 'lang')
-rw-r--r--lang/ruby-base/patches/patch-ak13
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/ruby-base/patches/patch-ak b/lang/ruby-base/patches/patch-ak
deleted file mode 100644
index 0d3c4e54afd..00000000000
--- a/lang/ruby-base/patches/patch-ak
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ak,v 1.1 2002/10/06 14:56:59 taca Exp $
-
---- marshal.c.orig Thu Feb 28 15:52:47 2002
-+++ marshal.c
-@@ -1047,7 +1047,7 @@ r_object(arg)
- break;
- }
- if (arg->proc) {
-- rb_funcall(arg->proc, rb_intern("yield"), 1, v);
-+ rb_funcall(arg->proc, rb_intern("call"), 1, v);
- }
- return v;
- }