Re-apply change #30562 (thanks to Abe Timmerman)
[p5sagit/p5-mst-13.2.git] / ext / Win32 / Makefile.PL
CommitLineData
34f7f30d 1use 5.006;
b4ad57f4 2use ExtUtils::MakeMaker;
3
753c3620 4my @libs;
5push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
6
b4ad57f4 7WriteMakefile(
34f7f30d 8 NAME => 'Win32',
9 VERSION_FROM => 'Win32.pm',
10 LIBS => \@libs,
11 INSTALLDIRS => ($] >= 5.008004 ? 'perl' : 'site'),
b3eb56ab 12 NO_META => 1,
34f7f30d 13
14 AUTHOR => 'Jan Dubois <jand@activestate.com>',
15 ABSTRACT_FROM => 'Win32.pm',
b4ad57f4 16);