]> git.imager.perl.org - imager.git/commitdiff
[rt #75878] pass --verbose through to Imager::Probe in sub-modules
authorTony Cook <tony@develop-help.com>
Mon, 15 Oct 2012 09:30:09 +0000 (20:30 +1100)
committerTony Cook <tony@develop-help.com>
Mon, 15 Oct 2012 09:30:09 +0000 (20:30 +1100)
FT2/Makefile.PL
GIF/Makefile.PL
JPEG/Makefile.PL
PNG/Makefile.PL
T1/Makefile.PL
TIFF/Makefile.PL
W32/Makefile.PL

index abcb3470bda018b4c0c9caf2731471bc048fe256..81d8176230752e06840bd94bca83264d39f21133 100644 (file)
@@ -89,6 +89,7 @@ my %probe =
      incsuffix => "freetype",
     },
    ],
+   verbose => $verbose,
   );
 
 my $probe_res = Imager::Probe->probe(\%probe);
index 5580ed18970a2032ec371d75933586a656a4e9ea..b0565327e0db427418288d8d9ce156f3acf571cb 100644 (file)
@@ -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);
index 26c50d3446c4270d818af535ff326b5818883059..b87c484a24a2aa8e16b2ec3eefdc7ea5582c057c 100644 (file)
@@ -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);
index bc735966b66fc09bc58cfbf6b9d8ce4c95e80b1a..1481744d95e3dad9771ed0e052a47a13a7dc5983 100644 (file)
@@ -103,6 +103,7 @@ my %probe =
    testcodeheaders => [ "png.h", "stdio.h" ],
    incpath => \@incpaths,
    libpath => \@libpaths,
+   verbose => $verbose,
    alternatives =>
    [
     @alts,
index e358767dd0deca3e757fff7045038f0ea929d257..205c018ca003896c780240d23a71440cfe9224e1 100644 (file)
@@ -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);
index f3804b21d7c1df028a3b3da58ea33107a08d53f9..558815a1bd026b9279ec02972a2701a03bdc625f 100644 (file)
@@ -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);
index 986674ae2d4fa426cd645b9de245bbd64b6be99a..cf66fd703c7bb544d4fb90bc2b1820fe7118ba78 100644 (file)
@@ -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);