line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::Libgpg_error; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
20689
|
use 5.006; |
|
1
|
|
|
|
|
5
|
|
6
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
21
|
|
7
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
34
|
|
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
754
|
use parent qw(Alien::Base); |
|
1
|
|
|
|
|
282
|
|
|
1
|
|
|
|
|
5
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Alien::Libgpg_error - Download, configure, build and install libgpg-error automagically! |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
use Module::Build; |
20
|
|
|
|
|
|
|
use Alien::Libgpg_error; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
my $alge = Alien::Libgpg_error->new(); |
23
|
|
|
|
|
|
|
... |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SEE ALSO |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
L, L. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SUPPORT |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
For support go to the GitHub repository at |
32
|
|
|
|
|
|
|
L. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Copyright E 2016 by Salvador FandiƱo |
37
|
|
|
|
|
|
|
(sfandino@yahoo.com) |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
40
|
|
|
|
|
|
|
it under the same terms as Perl itself, either Perl version 5.8.4 or, |
41
|
|
|
|
|
|
|
at your option, any later version of Perl 5 you may have available. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|