line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Devel::AssertOS::VMESA; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
1046
|
use Devel::CheckOS; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
163
|
|
4
|
4
|
|
|
4
|
|
17
|
use strict; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
72
|
|
5
|
4
|
|
|
4
|
|
17
|
use warnings; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
102
|
|
6
|
4
|
|
|
4
|
|
18
|
no warnings 'redefine'; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
385
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '1.2'; |
9
|
|
|
|
|
|
|
|
10
|
4
|
100
|
|
4
|
|
51
|
sub os_is { $^O =~ /^vmesa$/i ? 1 : 0; } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Devel::CheckOS::die_unsupported() unless(os_is()); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENCE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Copyright 2007 - 2014 David Cantrell |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |