source: trunk/essentials/sys-devel/automake-1.10/lib/Automake/Config.in

Last change on this file was 3150, checked in by bird, 18 years ago

Unixroot and the drive letter fix.

File size: 1.9 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$libdir =~ s/$ENV{'UNIXROOT'}\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
35$libdir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot.
36
37
381;;
39
40### Setup "GNU" style for perl-mode and cperl-mode.
41## Local Variables:
42## perl-indent-level: 2
43## perl-continued-statement-offset: 2
44## perl-continued-brace-offset: 0
45## perl-brace-offset: 0
46## perl-brace-imaginary-offset: 0
47## perl-label-offset: -2
48## cperl-indent-level: 2
49## cperl-brace-offset: 0
50## cperl-continued-brace-offset: 0
51## cperl-label-offset: -2
52## cperl-extra-newline-before-brace: t
53## cperl-merge-trailing-else: nil
54## cperl-continued-statement-offset: 2
55## End:
Note: See TracBrowser for help on using the repository browser.