This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade Unicode::Normalize to 1.14.
[perl5.git] / cpan / Win32 / Makefile.PL
CommitLineData
8883bb5a
JV
1use 5.006;\r
2use strict;\r
3use warnings;\r
4use ExtUtils::MakeMaker;\r
5\r
6unless ($^O eq "MSWin32" || $^O eq "cygwin") {\r
7 die "OS unsupported\n";\r
8}\r
9\r
10my %param = (\r
11 NAME => 'Win32',\r
12 VERSION_FROM => 'Win32.pm',\r
ad927ab0 13 INSTALLDIRS => ($] >= 5.008004 && $] < 5.012 ? 'perl' : 'site'),\r
8883bb5a
JV
14);\r
15$param{NO_META} = 1 if eval "$ExtUtils::MakeMaker::VERSION" >= 6.10_03;\r
16$param{LIBS} = ['-L/lib/w32api -lole32 -lversion'] if $^O eq "cygwin";\r
17\r
18WriteMakefile(%param);\r