This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
version-0.73 (was Re: Change 31920: Don't use ~0 as a version
[perl5.git] / ext / Win32 / Makefile.PL
CommitLineData
34f7f30d 1use 5.006;
b4ad57f4
NC
2use ExtUtils::MakeMaker;
3
753c3620
JD
4my @libs;
5push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
6
b4ad57f4 7WriteMakefile(
34f7f30d
SH
8 NAME => 'Win32',
9 VERSION_FROM => 'Win32.pm',
10 LIBS => \@libs,
11 INSTALLDIRS => ($] >= 5.008004 ? 'perl' : 'site'),
b3eb56ab 12 NO_META => 1,
34f7f30d
SH
13
14 AUTHOR => 'Jan Dubois <jand@activestate.com>',
15 ABSTRACT_FROM => 'Win32.pm',
b4ad57f4 16);