Skip to content

Commit

Permalink
[rt #75878] pass --verbose through to Imager::Probe in sub-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Oct 15, 2012
1 parent e13da17 commit 0987aae
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions FT2/Makefile.PL
Expand Up @@ -89,6 +89,7 @@ my %probe =
incsuffix => "freetype",
},
],
verbose => $verbose,
);

my $probe_res = Imager::Probe->probe(\%probe);
Expand Down
1 change: 1 addition & 0 deletions GIF/Makefile.PL
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions JPEG/Makefile.PL
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions PNG/Makefile.PL
Expand Up @@ -103,6 +103,7 @@ my %probe =
testcodeheaders => [ "png.h", "stdio.h" ],
incpath => \@incpaths,
libpath => \@libpaths,
verbose => $verbose,
alternatives =>
[
@alts,
Expand Down
1 change: 1 addition & 0 deletions T1/Makefile.PL
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions TIFF/Makefile.PL
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions W32/Makefile.PL
Expand Up @@ -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);
Expand Down

0 comments on commit 0987aae

Please sign in to comment.