Re: The Strict trap
[p5sagit/p5-mst-13.2.git] / ext / Win32 / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my @libs;
4 push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
5
6 WriteMakefile(
7     NAME         => 'Win32',
8     VERSION_FROM => 'Win32.pm',
9     LIBS         => \@libs,
10 );