Patch attached.
Uploaded to CPAN; will be 0.09.
--
Paul Evans
=== modified file 'lib/ExtUtils/CChecker.pm'
--- lib/ExtUtils/CChecker.pm 2013-12-12 17:07:21 +0000
+++ lib/ExtUtils/CChecker.pm 2013-12-12 17:07:51 +0000
@@ -75,6 +75,12 @@
the given name, instead of by adding extra C<-DI<SYMBOL>> arguments to the
compiler flags.
+=item quiet => BOOL
+
+If given, sets the C<quiet> option to the underlying C<ExtUtils::CBuilder>
+instance. If absent, defaults to enabled. To disable quietness, i.e. to print
+more verbosely, pass a defined-but-false value, such as C<0>.
+
=back
=cut
@@ -84,7 +90,10 @@
my $class = shift;
my %args = @_;
- my $cb = ExtUtils::CBuilder->new( quiet => 1 );
+ my $quiet = 1;
+ $quiet = 0 if defined $args{quiet} and !$args{quiet};
+
+ my $cb = ExtUtils::CBuilder->new( quiet => $quiet );
return bless {
cb => $cb,