** The use of the long-deprecated name 'configure.in' for the autoconf
input file now elicits a warning in the 'obsolete' category.
-** Older versions of aclocal (< 1.8) are no longer supported by autoreconf.
+** Older version of automake and aclocal (< 1.8) are no longer supported
+ by autoreconf.
** Macros
my $symlink = 0;
# Does aclocal support -Wfoo?
my $aclocal_supports_warnings = 0;
-# Does automake support --force-missing?
-my $automake_supports_force_missing = 0;
# Does automake support -Wfoo?
my $automake_supports_warnings = 0;
my $aclocal_help = `$aclocal --help 2>/dev/null`;
my $automake_help = `$automake --help 2>/dev/null`;
$aclocal_supports_warnings = $aclocal_help =~ /--warnings/;
- $automake_supports_force_missing = $automake_help =~ /--force-missing/;
$automake_supports_warnings = $automake_help =~ /--warnings/;
# Dispatch autoreconf's option to the tools.
$aclocal .= ' --force';
$autoconf .= ' --force';
$autoheader .= ' --force';
- $automake .= ' --force-missing'
- if $automake_supports_force_missing;
+ $automake .= ' --force-missing';
$autopoint .= ' --force';
$libtoolize .= ' --force';
}