As we're not passing over (or copying in) a NUL, don't need that extra
[p5sagit/p5-mst-13.2.git] / ext / Win32 / Makefile.PL
CommitLineData
b4ad57f4 1use ExtUtils::MakeMaker;
2
753c3620 3my @libs;
4push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
5
b4ad57f4 6WriteMakefile(
753c3620 7 NAME => 'Win32',
8 VERSION_FROM => 'Win32.pm',
9 LIBS => \@libs,
b4ad57f4 10);