mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
Update to 3.00
Drop the pure Perl implementations of the encoders and decoders. They are bloat that hides real problems in the XS implementations. I will re-release them separately in the new MIME-Base64-Perl distribution. The 'gcc -Wall' fix in 2.22 broke support for perl5.005, as the isXDIGIT() macro is not available in that perl. This problem has now been fixed.
This commit is contained in:
parent
d3d8412578
commit
f740ef08be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=98184
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= MIME-Base64
|
||||
PORTVERSION= 2.23
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 3.00
|
||||
CATEGORIES= converters perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= MIME
|
||||
|
@ -1 +1 @@
|
||||
MD5 (MIME-Base64-2.23.tar.gz) = 4497ebb054b99f24464338f70102efd4
|
||||
MD5 (MIME-Base64-3.00.tar.gz) = 30531c29f31682bf12dc0c4570756976
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- Base64.xs.orig Thu Jan 8 09:07:26 2004
|
||||
+++ Base64.xs Mon Jan 12 13:46:56 2004
|
||||
@@ -399,7 +399,7 @@
|
||||
whitespace = 0;
|
||||
}
|
||||
if (*str == '=') {
|
||||
- if ((str + 2) < end && isXDIGIT(str[1]) && isXDIGIT(str[2])) {
|
||||
+ if ((str + 2) < end && isxdigit(str[1]) && isxdigit(str[2])) {
|
||||
char buf[3];
|
||||
str++;
|
||||
buf[0] = *str++;
|
Loading…
Reference in New Issue
Block a user