blob: 742c50d558929c4832df765a9a810e76c767987b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use 5.006;
use ExtUtils::MakeMaker;
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'),
AUTHOR => 'Jan Dubois <jand@activestate.com>',
ABSTRACT_FROM => 'Win32.pm',
);
|