+2003-07-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (tiny change)
+
+ * automake.in (scan_autoconf_traces): Trace AM_ENABLE_MULTILIB to
+ render $seen_multilib functional again.
+
2003-07-10 Raja R Harinath <harinath@cs.umn.edu>
Avoid using refs as hash keys.
$strictness = $default_strictness;
$strictness_name = $default_strictness_name;
- %options =
+ %options =
(
# TRUE if --cygnus seen.
'cygnus' => 0,
'MAKEFILE-AM-SOURCES' => "$input$colon_infile",
'REGEN-ACLOCAL-M4' => $regen_aclocal_m4,
ACLOCAL_M4_DEPS => "@aclocal_m4_deps");
-
+
if ($relative_dir eq '.')
{
&push_dist_common ('acconfig.h')
AC_SUBST => 1,
AM_AUTOMAKE_VERSION => 1,
AM_CONDITIONAL => 2,
+ AM_ENABLE_MULTILIB => 0,
AM_GNU_GETTEXT => 0,
AM_INIT_AUTOMAKE => 0,
AM_MAINTAINER_MODE => 0,
elsif ($macro eq 'AM_CONDITIONAL')
{
$configure_cond{$args[1]} = $where;
+ }
+ elsif ($macro eq 'AM_ENABLE_MULTILIB')
+ {
+ $seen_multilib = $where;
}
elsif ($macro eq 'AM_GNU_GETTEXT')
{
{
my (%pairs) = @_;
my $result = '';
-
+
while (my ($token, $val) = each %pairs)
{
$result .= "s/\Q%$token%\E/\Q$val\E/gm;";
$result .= "s/\Q%?$token%\E/FALSE/gm;";
}
}
-
+
return $result;
}