line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Devel::AssertOS::Minix; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
729
|
use Devel::CheckOS; |
|
5
|
|
|
|
|
19
|
|
|
5
|
|
|
|
|
200
|
|
4
|
5
|
|
|
5
|
|
23
|
use strict; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
100
|
|
5
|
5
|
|
|
5
|
|
20
|
use warnings; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
130
|
|
6
|
5
|
|
|
5
|
|
25
|
no warnings 'redefine'; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
518
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '1.0'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
11
|
7
|
100
|
|
7
|
|
99
|
sub os_is { ( $^O =~ /^minix$/i) ? 1 : 0; } |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Devel::CheckOS::die_unsupported() unless(os_is()); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENCE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Copyright 2007 - 2014 David Cantrell |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
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. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |