use 5.006; use ExtUtils::MakeMaker; unless ($^O eq "MSWin32" || $^O eq "cygwin") { die "OS unsupported\n"; } my @libs; push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin"; WriteMakefile( NAME => 'Win32', VERSION_FROM => 'Win32.pm', LIBS => \@libs, INSTALLDIRS => ($] >= 5.008004 ? 'perl' : 'site'), NO_META => 1, AUTHOR => 'Jan Dubois ', ABSTRACT_FROM => 'Win32.pm', );