Reword the copyright notices to match what's suggested in GPLv3.
[automake/plouj.git] / lib / Automake / Config.in
blob94caf3e46b277a9998d492932a831447a71c98a7
1 # Copyright (C) 2003, 2004  Free Software Foundation, Inc.      -*- Perl -*-
2 # @configure_input@
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 3, or (at your option)
7 # any later version.
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.
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/>.
17 package Automake::Config;
18 use strict;
20 use 5.006;
21 require Exporter;
23 our @ISA = qw (Exporter);
24 our @EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir);
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.
28 our $APIVERSION = '@APIVERSION@';
29 our $PACKAGE = '@PACKAGE@';
30 our $VERSION = '@VERSION@';
31 our $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
33 1;;
35 ### Setup "GNU" style for perl-mode and cperl-mode.
36 ## Local Variables:
37 ## perl-indent-level: 2
38 ## perl-continued-statement-offset: 2
39 ## perl-continued-brace-offset: 0
40 ## perl-brace-offset: 0
41 ## perl-brace-imaginary-offset: 0
42 ## perl-label-offset: -2
43 ## cperl-indent-level: 2
44 ## cperl-brace-offset: 0
45 ## cperl-continued-brace-offset: 0
46 ## cperl-label-offset: -2
47 ## cperl-extra-newline-before-brace: t
48 ## cperl-merge-trailing-else: nil
49 ## cperl-continued-statement-offset: 2
50 ## End: