| 1 | # Copyright (C) 2003 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., 59 Temple Place - Suite 330, Boston, MA
|
|---|
| 17 | # 02111-1307, USA.
|
|---|
| 18 |
|
|---|
| 19 | package Automake::Config;
|
|---|
| 20 | use strict;
|
|---|
| 21 |
|
|---|
| 22 | require Exporter;
|
|---|
| 23 | use vars qw (@ISA @EXPORT);
|
|---|
| 24 |
|
|---|
| 25 | @ISA = qw (Exporter);
|
|---|
| 26 | @EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir);
|
|---|
| 27 |
|
|---|
| 28 | use vars qw ($APIVERSION $PACKAGE $VERSION $libdir);
|
|---|
| 29 |
|
|---|
| 30 | # Parameters set by configure. Not to be changed. NOTE: assign
|
|---|
| 31 | # VERSION as string so that e.g. version 0.30 will print correctly.
|
|---|
| 32 | $APIVERSION = '@APIVERSION@';
|
|---|
| 33 | $PACKAGE = '@PACKAGE@';
|
|---|
| 34 | $VERSION = '@VERSION@';
|
|---|
| 35 | $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
|
|---|
| 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:
|
|---|