source: vendor/automake/1.10/lib/Automake/Config.in@ 3147

Last change on this file since 3147 was 3147, checked in by bird, 19 years ago

automake 1.10

File size: 1.7 KB
Line 
1# Copyright (C) 2003, 2004 Free Software Foundation, Inc. -*- Perl -*-
2# @configure_input@
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, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17# 02110-1301, USA.
18
19package Automake::Config;
20use strict;
21
22use 5.006;
23require Exporter;
24
25our @ISA = qw (Exporter);
26our @EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir);
27
28# Parameters set by configure. Not to be changed. NOTE: assign
29# VERSION as string so that e.g. version 0.30 will print correctly.
30our $APIVERSION = '@APIVERSION@';
31our $PACKAGE = '@PACKAGE@';
32our $VERSION = '@VERSION@';
33our $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
34
351;;
36
37### Setup "GNU" style for perl-mode and cperl-mode.
38## Local Variables:
39## perl-indent-level: 2
40## perl-continued-statement-offset: 2
41## perl-continued-brace-offset: 0
42## perl-brace-offset: 0
43## perl-brace-imaginary-offset: 0
44## perl-label-offset: -2
45## cperl-indent-level: 2
46## cperl-brace-offset: 0
47## cperl-continued-brace-offset: 0
48## cperl-label-offset: -2
49## cperl-extra-newline-before-brace: t
50## cperl-merge-trailing-else: nil
51## cperl-continued-statement-offset: 2
52## End:
Note: See TracBrowser for help on using the repository browser.