"Fossies" - the Fresh Open Source Software Archive 
Member "automake-1.16.3/lib/Automake/Config.in" (19 Nov 2020, 1522 Bytes) of package /linux/misc/automake-1.16.3.tar.xz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "Config.in":
1.16.2_vs_1.16.3.
1 # -*- Perl -*-
2 # Copyright (C) 2003-2020 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 <https://www.gnu.org/licenses/>.
17
18 package Automake::Config;
19
20 use 5.006;
21 use strict;
22 use warnings FATAL => 'all';
23
24 use Exporter;
25
26 our @ISA = qw (Exporter);
27 our @EXPORT = qw ($APIVERSION $PACKAGE $PACKAGE_BUGREPORT $VERSION
28 $RELEASE_YEAR $libdir $perl_threads);
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 our $APIVERSION = '@APIVERSION@';
33 our $PACKAGE = '@PACKAGE@';
34 our $PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@';
35 our $VERSION = '@VERSION@';
36 our $RELEASE_YEAR = '@RELEASE_YEAR@';
37 our $libdir = $ENV{"AUTOMAKE_LIBDIR"} || '@datadir@/@PACKAGE@-@APIVERSION@';
38
39 our $perl_threads = 0;
40 # We need at least this version for CLONE support.
41 if (eval { require 5.007_002; })
42 {
43 use Config;
44 $perl_threads = $Config{useithreads};
45 }
46
47 1;