summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 17e1eb39bf3c614604feb306af77c5a20bfa161b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 5.004;
use ExtUtils::MakeMaker;

if ("foo" !~ /\Afoo\z/) {
    print "\\z not supported by this perl.  Fixing URI.pm...\n";
    system("$^X -p -i.bak -e 's/\\\\z/\\\\Z/' URI.pm");
}

WriteMakefile(
    'NAME'	   => 'URI',
    'VERSION_FROM' => 'URI.pm',
    'PREREQ_PM'    => {	
	                 'MIME::Base64' => 2,
		      },
    dist           => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
);