line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Devel::AssertOS::Cygwin; |
2
|
|
|
|
|
|
|
|
3
|
7
|
|
|
7
|
|
709
|
use Devel::CheckOS; |
|
7
|
|
|
|
|
17
|
|
|
7
|
|
|
|
|
294
|
|
4
|
7
|
|
|
7
|
|
33
|
use strict; |
|
7
|
|
|
|
|
40
|
|
|
7
|
|
|
|
|
143
|
|
5
|
7
|
|
|
7
|
|
29
|
use warnings; |
|
7
|
|
|
|
|
13
|
|
|
7
|
|
|
|
|
204
|
|
6
|
7
|
|
|
7
|
|
27
|
no warnings 'redefine'; |
|
7
|
|
|
|
|
11
|
|
|
7
|
|
|
|
|
939
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '1.3'; |
9
|
|
|
|
|
|
|
|
10
|
7
|
100
|
|
7
|
|
64
|
sub os_is { $^O =~ /^cygwin$/i ? 1 : 0; } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub expn { |
13
|
1
|
|
|
1
|
|
64
|
join("\n", |
14
|
|
|
|
|
|
|
"The operating system is Microsoft Windows, but perl was built using", |
15
|
|
|
|
|
|
|
"the POSIXish API provided by Cygwin" |
16
|
|
|
|
|
|
|
) |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Devel::CheckOS::die_unsupported() unless(os_is()); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENCE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Copyright 2007 - 2014 David Cantrell |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
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. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=cut |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |