Avoid some echo '...\...' gotchas
[autoconf.git] / lib / Autom4te / Config.pm
blobb4fb641018f80f70944db9b4928e53b6908ac34d
1 # -*- Perl -*-
2 # Copyright (C) 2003-2024 Free Software Foundation, Inc.
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.
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 <https://www.gnu.org/licenses/>.
17 package Autom4te::Config;
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.
28 use 5.006;
29 use strict;
30 use warnings FATAL => 'all';
32 use Exporter;
34 our @ISA = qw (Exporter);
35 our @EXPORT = qw ($PACKAGE_BUGREPORT $perl_threads);
37 # this must be kept in sync with configure.ac
38 our $PACKAGE_BUGREPORT = 'bug-autoconf@gnu.org';
40 # autom4te currently has no use for threads
41 our $perl_threads = 0;