diff options
author | markm <markm@FreeBSD.org> | 2001-08-11 20:02:02 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-08-11 20:02:02 +0800 |
commit | dfbf5c9e583acf0ddd21c50962e79af8153659af (patch) | |
tree | e0c2b7978dea70e11c1947be5f78742e0c59e9a8 /security | |
parent | 1aed82d8913d34a0501cc7e59a683b94903e6e62 (diff) | |
download | freebsd-ports-gnome-dfbf5c9e583acf0ddd21c50962e79af8153659af.tar.gz freebsd-ports-gnome-dfbf5c9e583acf0ddd21c50962e79af8153659af.tar.zst freebsd-ports-gnome-dfbf5c9e583acf0ddd21c50962e79af8153659af.zip |
Damn. Didn't add these with the rest of the port.
Diffstat (limited to 'security')
3 files changed, 36 insertions, 0 deletions
diff --git a/security/p5-Crypt-Cryptix/files/patch-Crypt-Blowfish::Blowfish.xs b/security/p5-Crypt-Cryptix/files/patch-Crypt-Blowfish::Blowfish.xs new file mode 100644 index 000000000000..17f695e47327 --- /dev/null +++ b/security/p5-Crypt-Cryptix/files/patch-Crypt-Blowfish::Blowfish.xs @@ -0,0 +1,12 @@ +diff -udr ../Cryptix-1.16.ORIG/Crypt-Blowfish/Blowfish.xs ./Crypt-Blowfish/Blowfish.xs +--- ../Cryptix-1.16.ORIG/Crypt-Blowfish/Blowfish.xs Wed Aug 6 15:45:43 1997 ++++ ./Crypt-Blowfish/Blowfish.xs Fri Aug 10 16:23:42 2001 +@@ -52,7 +52,7 @@ + + ks = (char *) SvPV(ST(2), ks_len); + +- if (output == &sv_undef) ++ if (output == &PL_sv_undef) + output = sv_newmortal(); + output_len = 8; + diff --git a/security/p5-Crypt-Cryptix/files/patch-Crypt-DES::DES.xs b/security/p5-Crypt-Cryptix/files/patch-Crypt-DES::DES.xs new file mode 100644 index 000000000000..d530c5861827 --- /dev/null +++ b/security/p5-Crypt-Cryptix/files/patch-Crypt-DES::DES.xs @@ -0,0 +1,12 @@ +diff -udr ../Cryptix-1.16.ORIG/Crypt-DES/DES.xs ./Crypt-DES/DES.xs +--- ../Cryptix-1.16.ORIG/Crypt-DES/DES.xs Wed Aug 6 15:45:45 1997 ++++ ./Crypt-DES/DES.xs Fri Aug 10 16:23:39 2001 +@@ -48,7 +48,7 @@ + if (ks_len != sizeof(des_ks)) + croak("Invalid key schedule"); + +- if (output == &sv_undef) ++ if (output == &PL_sv_undef) + output = sv_newmortal(); + output_len = 8; + diff --git a/security/p5-Crypt-Cryptix/files/patch-Crypt-IDEA::IDEA.xs b/security/p5-Crypt-Cryptix/files/patch-Crypt-IDEA::IDEA.xs new file mode 100644 index 000000000000..4b1fb1fcf1b4 --- /dev/null +++ b/security/p5-Crypt-Cryptix/files/patch-Crypt-IDEA::IDEA.xs @@ -0,0 +1,12 @@ +diff -udr ../Cryptix-1.16.ORIG/Crypt-IDEA/IDEA.xs ./Crypt-IDEA/IDEA.xs +--- ../Cryptix-1.16.ORIG/Crypt-IDEA/IDEA.xs Wed Aug 6 15:45:46 1997 ++++ ./Crypt-IDEA/IDEA.xs Fri Aug 10 16:23:50 2001 +@@ -63,7 +63,7 @@ + if (ks_len != sizeof(idea_ks)) + croak("Invalid key schedule"); + +- if (output == &sv_undef) ++ if (output == &PL_sv_undef) + output = sv_newmortal(); + output_len = 8; + |