summaryrefslogtreecommitdiff
path: root/security/ruby-cast_256/files/patch-rcast_256.cc
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-08-03 06:49:58 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-08-03 06:49:58 +0000
commit8b6dad2efd740371a66991b8f15c44c8c0b2ef77 (patch)
tree49f932f1ed2cfbbb69ddb3acec3025799de905d4 /security/ruby-cast_256/files/patch-rcast_256.cc
parentRemove KAKASI option, as ruby-kakasi has expired (diff)
Removing old ruby stuff
2011-08-03 comms/ruby-serialport: Doesn't work with Ruby 1.9 2011-08-03 databases/ruby-search-namazu: Doesn't work with Ruby 1.9 2011-08-03 databases/ruby-sqlite: Doesn't work with Ruby 1.9 2011-08-03 databases/rubygem-kirbybase: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-eet: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-filelock: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-filemagic: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-metaruby: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-poll: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-rrb: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-strongtyping: Doesn't work with Ruby 1.9 2011-08-03 devel/ruby-textbuf: Doesn't work with Ruby 1.9 2011-08-03 graphics/ruby-graph: Doesn't work with Ruby 1.9 2011-08-03 graphics/ruby-libpng: Doesn't work with Ruby 1.9 2011-08-03 japanese/ruby-kakasi: Doesn't work with Ruby 1.9 2011-08-03 lang/ruby-extensions: Doesn't work with Ruby 1.9 2011-08-03 lang/ruby-lua: Doesn't work with Ruby 1.9 2011-08-03 lang/ruby-perl: Doesn't work with Ruby 1.9 2011-08-03 mail/ruby-tmail: Doesn't work with Ruby 1.9 2011-08-03 math/ruby-bitset: Doesn't work with Ruby 1.9 2011-08-03 math/ruby-bitvector: Doesn't work with Ruby 1.9 2011-08-03 math/ruby-gmp: Doesn't work with Ruby 1.9 2011-08-03 net/ruby-mpi: Doesn't work with Ruby 1.9 2011-08-03 net/ruby-nis: Doesn't work with Ruby 1.9 2011-08-03 net/ruby-pcap: Doesn't work with Ruby 1.9 2011-08-03 net/ruby-romp: Doesn't work with Ruby 1.9 2011-08-03 net/ruby-spread: Doesn't work with Ruby 1.9 2011-08-03 print/ruby-pdflib: Doesn't work with Ruby 1.9 2011-08-03 security/ruby-aes: Doesn't work with Ruby 1.9 2011-08-03 security/ruby-blowfish: Doesn't work with Ruby 1.9 2011-08-03 security/ruby-cast_256: Doesn't work with Ruby 1.9 2011-08-03 security/ruby-mcrypt: Doesn't work with Ruby 1.9 2011-08-03 security/ruby-pam: Doesn't work with Ruby 1.9 2011-08-03 sysutils/ruby-log4r: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-csv: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-formvalidator: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-gdome: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-htmltools: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-nqxml: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-quixml: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-raspell: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-tempura: Doesn't work with Ruby 1.9 2011-08-03 textproc/ruby-xtemplate: Doesn't work with Ruby 1.9 2011-08-03 www/ruby-tmpl: Doesn't work with Ruby 1.9
Notes
Notes: svn path=/head/; revision=278849
Diffstat (limited to 'security/ruby-cast_256/files/patch-rcast_256.cc')
-rw-r--r--security/ruby-cast_256/files/patch-rcast_256.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/security/ruby-cast_256/files/patch-rcast_256.cc b/security/ruby-cast_256/files/patch-rcast_256.cc
deleted file mode 100644
index b50d62eec7db..000000000000
--- a/security/ruby-cast_256/files/patch-rcast_256.cc
+++ /dev/null
@@ -1,18 +0,0 @@
---- rcast_256.cc.orig Sun May 23 15:26:24 1999
-+++ rcast_256.cc Tue Oct 8 18:46:29 2002
-@@ -107,12 +107,12 @@
- }
-
-
--extern "C" EXTERN void Init_rcast_256(void){
-+extern "C" void Init_rcast_256(void){
- VALUE mCAST_256 = rb_define_module("RCAST_256");
-
- rb_define_const(mCAST_256, "ENCRYPT", INT2FIX(ENCRYPT) );
- rb_define_const(mCAST_256, "DECRYPT", INT2FIX(DECRYPT) );
-
-- rb_define_module_function(mCAST_256, "set_key",(unsigned long (__cdecl *)(void)) set_key ,1);
-- rb_define_module_function(mCAST_256, "crypt_block",(unsigned long (__cdecl *)(void)) crypt_block ,3);
-+ rb_define_module_function(mCAST_256, "set_key",(unsigned long (__cdecl *)(...)) set_key ,1);
-+ rb_define_module_function(mCAST_256, "crypt_block",(unsigned long (__cdecl *)(...)) crypt_block ,3);
- }