We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a7cee commit a10c2feCopy full SHA for a10c2fe
Makefile.PL
@@ -11,6 +11,13 @@ my %param = (
11
NAME => 'Win32',
12
VERSION_FROM => 'Win32.pm',
13
INSTALLDIRS => ($] >= 5.008004 && $] < 5.012 ? 'perl' : 'site'),
14
+ PREREQ_PM => {
15
+ strict => 0,
16
+ warnings => 0,
17
+ vars => 0,
18
+ Exporter => 0,
19
+ DynaLoader => 0
20
+ }
21
);
22
$param{NO_META} = 1 if eval "$ExtUtils::MakeMaker::VERSION" >= 6.10_03;
23
@@ -21,4 +28,10 @@ else {
28
$param{LIBS} = ['-luserenv']
29
}
30
31
+my $test_requires = $ExtUtils::MakeMaker::VERSION >= 6.64
32
+ ? 'TEST_REQUIRES'
33
+ : 'PREREQ_PM';
34
+
35
+$param{$test_requires}{'Test'} = 0;
36
24
37
WriteMakefile(%param);
0 commit comments