diff options
author | erwin <erwin@FreeBSD.org> | 2006-04-23 16:40:47 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-04-23 16:40:47 +0800 |
commit | 54a5fe6b4bed154ada53d9852ff0387c0b05c3d2 (patch) | |
tree | 8bdd1b74bfa9f1c1225812ea740350b22d898aa7 | |
parent | d1f54d0e5a8ed8874341ada858148e8b363b366d (diff) | |
download | freebsd-ports-gnome-54a5fe6b4bed154ada53d9852ff0387c0b05c3d2.tar.gz freebsd-ports-gnome-54a5fe6b4bed154ada53d9852ff0387c0b05c3d2.tar.zst freebsd-ports-gnome-54a5fe6b4bed154ada53d9852ff0387c0b05c3d2.zip |
The perl module Crypt::Rijndael has a bug in it causing it to fail on all
64-bit architectures. It assumes that C type long is 32 bits. The patch
below works with both i386 and amd64 and should with others.
PR: 96114
Submitted by: Vivek Khera <vivek@khera.org>
-rw-r--r-- | security/p5-Crypt-Rijndael/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/p5-Crypt-Rijndael/Makefile b/security/p5-Crypt-Rijndael/Makefile index b4c81a62f15f..7265c4562c4f 100644 --- a/security/p5-Crypt-Rijndael/Makefile +++ b/security/p5-Crypt-Rijndael/Makefile @@ -7,6 +7,7 @@ PORTNAME= Crypt-Rijndael PORTVERSION= 0.05 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Crypt |