b6674dc8c8a50831085ca27e7648b23768c1fef0
[platform/upstream/automake.git] / lib / Automake / Config.in
1 #  -*- Perl -*-
2 # Copyright (C) 2003, 2004, 2008, 2010 Free Software Foundation, Inc.
3 # @configure_input@
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 package Automake::Config;
19 use strict;
20
21 use 5.006;
22 require Exporter;
23
24 our @ISA = qw (Exporter);
25 our @EXPORT = qw ($APIVERSION $PACKAGE $PACKAGE_BUGREPORT $VERSION $libdir
26                   $perl_threads);
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.
30 our $APIVERSION = '@APIVERSION@';
31 our $PACKAGE = '@PACKAGE@';
32 our $PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@';
33 our $VERSION = '@VERSION@';
34 our $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
35 our $perl_threads = @PERL_THREADS@;
36
37 1;
38
39 ### Setup "GNU" style for perl-mode and cperl-mode.
40 ## Local Variables:
41 ## perl-indent-level: 2
42 ## perl-continued-statement-offset: 2
43 ## perl-continued-brace-offset: 0
44 ## perl-brace-offset: 0
45 ## perl-brace-imaginary-offset: 0
46 ## perl-label-offset: -2
47 ## cperl-indent-level: 2
48 ## cperl-brace-offset: 0
49 ## cperl-continued-brace-offset: 0
50 ## cperl-label-offset: -2
51 ## cperl-extra-newline-before-brace: t
52 ## cperl-merge-trailing-else: nil
53 ## cperl-continued-statement-offset: 2
54 ## End: