-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
49 lines (40 loc) · 1.02 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use ExtUtils::MakeMaker;
my $filename = "t/SKIPXPATH";
eval { require XML::XPath; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
print <<EOT
XML::XPath is not installed. This means that you will not be able to
access the full functionality of this module. However should you install
XML::XPath at a later date this functionality will become available
EOT
} else {
unlink $filename;
}
$filename = "t/SKIPWITHOUT";
eval { require Test::Without::Module; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
} else {
unlink $filename;
}
$filename = "t/SKIPWARN";
eval { require Test::Warn; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
} else {
unlink $filename;
}
WriteMakefile
('DISTNAME' => 'WebService-Validator-HTML-W3C',
'VERSION' => '0.03',
'PL_FILES' => {},
'PREREQ_PM' => {
'Class::Accessor' => 0,
'LWP' => '0',
'Test::More' => '0',
},
);