| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# -*- Perl -*- |
|
2
|
|
|
|
|
|
|
# Copyright (C) 2003-2023 Free Software Foundation, Inc. |
|
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, see . |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
package Autom4te::Config; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# This is a stub version of Automake/Config.pm. |
|
20
|
|
|
|
|
|
|
# It defines only the variables that are necessary in order to fetch |
|
21
|
|
|
|
|
|
|
# Autom4te/ChannelDefs.pm from Automake/ChannelDefs.pm |
|
22
|
|
|
|
|
|
|
# (see build-aux/fetch.pl). |
|
23
|
|
|
|
|
|
|
# We would like to fetch Automake/Config.pm as well, |
|
24
|
|
|
|
|
|
|
# but that file is generated when automake is built, |
|
25
|
|
|
|
|
|
|
# and autoconf's build machinery is not prepared to do that. |
|
26
|
|
|
|
|
|
|
# Revisit after 2.70. |
|
27
|
|
|
|
|
|
|
|
|
28
|
7
|
|
|
7
|
|
124
|
use 5.006; |
|
|
7
|
|
|
|
|
27
|
|
|
29
|
7
|
|
|
7
|
|
40
|
use strict; |
|
|
7
|
|
|
|
|
13
|
|
|
|
7
|
|
|
|
|
275
|
|
|
30
|
7
|
|
|
7
|
|
32
|
use warnings FATAL => 'all'; |
|
|
7
|
|
|
|
|
12
|
|
|
|
7
|
|
|
|
|
430
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
7
|
|
|
7
|
|
98
|
use Exporter; |
|
|
7
|
|
|
|
|
12
|
|
|
|
7
|
|
|
|
|
858
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
our @ISA = qw (Exporter); |
|
35
|
|
|
|
|
|
|
our @EXPORT = qw ($PACKAGE_BUGREPORT $perl_threads); |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# this must be kept in sync with configure.ac |
|
38
|
|
|
|
|
|
|
our $PACKAGE_BUGREPORT = 'bug-autoconf@gnu.org'; |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
# autom4te currently has no use for threads |
|
41
|
|
|
|
|
|
|
our $perl_threads = 0; |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
1; |