Skip Menu |

This queue is for tickets about the MIME-Base64 CPAN distribution.

Report information
The Basics
Id: 30347
Status: resolved
Priority: 0/
Queue: MIME-Base64

People
Owner: Nobody in particular
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 3.07
Fixed in: (no value)



Subject: [PATCH] compatibility with older perls
XSLoader is now on CPAN, it works on perl 5.4. Also adds license for META.yml. Tested patch on 5.5. -- Alexandr Ciornii, http://chorny.net
Subject: Makefile.PL.patch
--- Makefile.PL.orig Mon Oct 29 23:03:33 2007 +++ Makefile.PL Mon Oct 29 23:17:00 2007 @@ -1,4 +1,4 @@ -require 5.006; +#require 5.006; use ExtUtils::MakeMaker; my @makefileopts; @@ -9,9 +9,16 @@ push @makefileopts, INSTALLDIRS => 'perl'; } +if ($ExtUtils::MakeMaker::VERSION gt '6.30') { + push @makefileopts, 'LICENSE' => 'perl'; +} + WriteMakefile( NAME => 'MIME::Base64', VERSION_FROM => 'Base64.pm', dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + 'PREREQ_PM' => { + 'XSLoader' => 0, + }, @makefileopts, );
I guess it's a bit late :-)

Anyway I decided to apply something based on your patch; https://github.com/gisle/mime-base64/commit/a2438f4776ac9dee6efad54a0863c9dbd4517dbc