summaryrefslogtreecommitdiff
path: root/databases/ruby-bdb1/files/patch-super
diff options
context:
space:
mode:
authorThomas Abthorpe <tabthorpe@FreeBSD.org>2013-10-11 05:34:28 +0000
committerThomas Abthorpe <tabthorpe@FreeBSD.org>2013-10-11 05:34:28 +0000
commit8f2bb0ababc016d140d7408d966f18d80df0d8de (patch)
treed69af22bb4d66375b76d5a56d03a08af6318d854 /databases/ruby-bdb1/files/patch-super
parent- Update to 0.5.3 (bugfix release) (diff)
2013-10-10 audio/ruby-vorbisfile: Does not work with Ruby 1.9
2013-10-10 audio/ruby-xmms: Does not work with Ruby 1.9 2013-10-10 databases/ruby-interbase: Does not work with Ruby 1.9 2013-10-10 databases/ruby-bdb1: Does not work with Ruby 1.9 2013-10-10 devel/ruby-fam: Does not work with Ruby 1.9 2013-10-10 devel/ruby-rcov: Does not work with Ruby 1.9 2013-10-10 devel/ruby-rudl: Does not work with Ruby 1.9 2013-10-10 devel/ruby-gemfinder: Does not work with Ruby 1.9 2013-10-10 devel/ruby-sysvipc: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-sdl: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-ncurses: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-parsetree: Does not work with Ruby 1.9 2013-10-10 devel/ruby-sexp: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-getopt-declare: Does not work with Ruby 1.9 2013-10-10 devel/ruby-slang: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-slang: Does not work with Ruby 1.9 2013-10-10 devel/ruby-gettext: Does not work with Ruby 1.9 2013-10-10 devel/ruby-jttui: Does not work with Ruby 1.9 2013-10-10 devel/ruby-mmap: Does not work with Ruby 1.9 2013-10-10 devel/ruby-racc: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-rparsec: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-zoom: Does not work with Ruby 1.9 2013-10-10 games/ruby-exmars: Does not work with Ruby 1.9 2013-10-10 graphics/ruby-pgplot: Does not work with Ruby 1.9 2013-10-10 graphics/ruby-opengl: Does not work with Ruby 1.9 2013-10-10 graphics/rubygem-turing: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-chasen: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-gyokuro: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-rdic: Does not work with Ruby 1.9 2013-10-10 lang/ruby-mode.el: Does not work with Ruby 1.9 2013-10-10 misc/rubygem-ohcount: Does not work with Ruby 1.9 2013-10-10 net-im/rubygem-xmpp4r: Does not work with Ruby 1.9 2013-10-10 security/ruby-acl: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-xslt: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-erbscan: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-mwdom: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-xmlscan-old: Does not work with Ruby 1.9 2013-10-10 textproc/rubygem-formosa: Does not work with Ruby 1.9 2013-10-10 textproc/rubygem-htmltools: Does not work with Ruby 1.9 2013-10-10 www/ruby-cruisecontrolrb: Does not work with Ruby 1.9 2013-10-10 www/rubygem-rubyfulsoup: Does not work with Ruby 1.9 2013-10-10 x11/ruby-gtktrayicon: Does not work with Ruby 1.9
Notes
Notes: svn path=/head/; revision=330056
Diffstat (limited to 'databases/ruby-bdb1/files/patch-super')
-rw-r--r--databases/ruby-bdb1/files/patch-super16
1 files changed, 0 insertions, 16 deletions
diff --git a/databases/ruby-bdb1/files/patch-super b/databases/ruby-bdb1/files/patch-super
deleted file mode 100644
index f90e04a63d36..000000000000
--- a/databases/ruby-bdb1/files/patch-super
+++ /dev/null
@@ -1,16 +0,0 @@
-The RCLASS_SUPER define is present in both Ruby 1.8 and 1.9.
-
-Direct access to "super" no longer works in 1.9 (the field is
-not there), but the define continues to work properly.
-
- -mi
-
---- src/bdb1.c 2006-09-20 12:41:01.000000000 -0400
-+++ src/bdb1.c 2011-09-02 12:27:34.000000000 -0400
-@@ -692,5 +692,5 @@
- break;
- }
-- cl = RCLASS(cl)->super;
-+ cl = RCLASS_SUPER(cl);
- }
- if (!cl) {