2008-10-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+ No uniquifying for fatal, prog_error, and verbose messages.
+ There is no point in dropping critical messages, even if they
+ are duplicates (unlikely to happen unless they have been sent
+ as non-critical messages before), and verbose messages should
+ enable to show progress, even using duplicate statements.
+ * lib/Automake/ChannelDefs.pm (fatal, automake, verb): Set
+ `uniq_part' to `UP_NONE' when registering these channels.
+
Fix 'config.status --file=... depfiles' with new Autoconf.
* m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Eval
$CONFIG_STATUS contents if we detect the quoting used by
-# Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2006, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# Do not forget to update &usage and the manual
# if you add or change a warning channel.
-register_channel 'fatal', type => 'fatal';
+register_channel 'fatal', type => 'fatal', uniq_part => UP_NONE;
register_channel 'error', type => 'error';
register_channel 'error-gnu', type => 'error';
register_channel 'error-gnu/warn', type => 'error';
header => ("####################\n" .
"## Internal Error ##\n" .
"####################\n"),
- footer => "\nPlease contact <bug-automake\@gnu.org>.";
+ footer => "\nPlease contact <bug-automake\@gnu.org>.",
+ uniq_part => UP_NONE;
register_channel 'gnu', type => 'warning';
register_channel 'obsolete', type => 'warning', silent => 1;
register_channel 'syntax', type => 'warning';
register_channel 'unsupported', type => 'warning';
-register_channel 'verb', type => 'debug', silent => 1;
+register_channel 'verb', type => 'debug', silent => 1, uniq_part => UP_NONE;
register_channel 'note', type => 'debug', silent => 0;
=head2 FUNCTIONS