From: Tony Cook Date: Mon, 15 Oct 2012 09:30:09 +0000 (+1100) Subject: [rt #75878] pass --verbose through to Imager::Probe in sub-modules X-Git-Tag: v0.93~2 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/0987aae1afc6b652217ecce21ad4fc93e2e684dd?ds=inline [rt #75878] pass --verbose through to Imager::Probe in sub-modules --- diff --git a/FT2/Makefile.PL b/FT2/Makefile.PL index abcb3470..81d81762 100644 --- a/FT2/Makefile.PL +++ b/FT2/Makefile.PL @@ -89,6 +89,7 @@ my %probe = incsuffix => "freetype", }, ], + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe); diff --git a/GIF/Makefile.PL b/GIF/Makefile.PL index 5580ed18..b0565327 100644 --- a/GIF/Makefile.PL +++ b/GIF/Makefile.PL @@ -77,6 +77,7 @@ my %probe = testcodeheaders => [ "stddef.h", "gif_lib.h", "stdio.h", "errno.h", "string.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe); diff --git a/JPEG/Makefile.PL b/JPEG/Makefile.PL index 26c50d34..b87c484a 100644 --- a/JPEG/Makefile.PL +++ b/JPEG/Makefile.PL @@ -77,6 +77,7 @@ my %probe = testcodeheaders => [ "stdio.h", "stddef.h", "jpeglib.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe); diff --git a/PNG/Makefile.PL b/PNG/Makefile.PL index bc735966..1481744d 100644 --- a/PNG/Makefile.PL +++ b/PNG/Makefile.PL @@ -103,6 +103,7 @@ my %probe = testcodeheaders => [ "png.h", "stdio.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, alternatives => [ @alts, diff --git a/T1/Makefile.PL b/T1/Makefile.PL index e358767d..205c018c 100644 --- a/T1/Makefile.PL +++ b/T1/Makefile.PL @@ -78,6 +78,7 @@ my %probe = testcodeheaders => [ "stdio.h", "string.h", "t1lib.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe); diff --git a/TIFF/Makefile.PL b/TIFF/Makefile.PL index f3804b21..558815a1 100644 --- a/TIFF/Makefile.PL +++ b/TIFF/Makefile.PL @@ -77,6 +77,7 @@ my %probe = testcodeheaders => [ "tiffio.h", "stdio.h", "string.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe); diff --git a/W32/Makefile.PL b/W32/Makefile.PL index 986674ae..cf66fd70 100644 --- a/W32/Makefile.PL +++ b/W32/Makefile.PL @@ -77,6 +77,7 @@ my %probe = testcodeheaders => [ "stdio.h", "string.h", "windows.h" ], incpath => \@incpaths, libpath => \@libpaths, + verbose => $verbose, ); my $probe_res = Imager::Probe->probe(\%probe);