File Coverage

File:/usr/local/share/automake-1.11/Automake/Config.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1# Copyright (C) 2003, 2004, 2008 Free Software Foundation, Inc. -*- Perl -*-
2# Generated from Config.in; do not edit by hand.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17package Automake::Config;
18
1
1
1
4
2
3
use strict;
19
20
1
1
1
27
2
4
use 5.006;
21require Exporter;
22
23our @ISA = qw (Exporter);
24our @EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir $perl_threads);
25
26# Parameters set by configure. Not to be changed. NOTE: assign
27# VERSION as string so that e.g. version 0.30 will print correctly.
28our $APIVERSION = '1.11';
29our $PACKAGE = 'automake';
30our $VERSION = '1.11.1';
31our $libdir = '/usr/local/share/automake-1.11';
32our $perl_threads = 1;
33
341;;
35
36### Setup "GNU" style for perl-mode and cperl-mode.
37## Local Variables:
38## perl-indent-level: 2
39## perl-continued-statement-offset: 2
40## perl-continued-brace-offset: 0
41## perl-brace-offset: 0
42## perl-brace-imaginary-offset: 0
43## perl-label-offset: -2
44## cperl-indent-level: 2
45## cperl-brace-offset: 0
46## cperl-continued-brace-offset: 0
47## cperl-label-offset: -2
48## cperl-extra-newline-before-brace: t
49## cperl-merge-trailing-else: nil
50## cperl-continued-statement-offset: 2
51## End: