This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Data::Dumper: handle incomplete support for Unicode glob names
[perl5.git] / dist / base / Makefile.PL
1 use 5.008;
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME            => 'base',
7     VERSION_FROM    => "lib/base.pm", # finds $VERSION
8     PREREQ_PM       => { 'Test::More' => 0.40 },
9     ($] > 5.011) ? () : ( INSTALLDIRS => 'perl' ), # CPAN sourced versions should now install to site
10
11 );
12