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
1 use 5.006;
2 use ExtUtils::MakeMaker;
3
4 my @libs;
5 push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
6
7 WriteMakefile(
8     NAME          => 'Win32',
9     VERSION_FROM  => 'Win32.pm',
10     LIBS          => \@libs,
11     INSTALLDIRS   => ($] >= 5.008004 ? 'perl' : 'site'),
12     NO_META       => 1,
13
14     AUTHOR        => 'Jan Dubois <jand@activestate.com>',
15     ABSTRACT_FROM => 'Win32.pm',
16 );