line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# $Id: Sun.pm,v 1.5 2008/11/05 22:52:34 drhyde Exp $ |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Devel::AssertOS::Sun; |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
5
|
use Devel::CheckOS; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
32
|
|
6
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
15
|
|
7
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
21
|
|
8
|
1
|
|
|
1
|
|
4
|
no warnings 'redefine'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
94
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '1.3'; |
11
|
|
|
|
|
|
|
|
12
|
2
|
|
|
2
|
|
10
|
sub matches { return qw(SunOS Solaris); } |
13
|
1
|
|
|
1
|
|
2
|
sub os_is { Devel::CheckOS::os_is(matches()); } |
14
|
|
|
|
|
|
|
Devel::CheckOS::die_unsupported() unless(os_is()); |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
1
|
|
59
|
sub expn { "The operating system is from Sun Microsystems" } |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENCE |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Copyright 2007 - 2008 David Cantrell |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
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. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |