In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/993f042350da76bc3fd9ee9391fd43c55e148ad4?hp=d9ef0156525e64ad4d955006e4ce513cdaef18a5>
- Log ----------------------------------------------------------------- commit 993f042350da76bc3fd9ee9391fd43c55e148ad4 Author: Steve Hay <[email protected]> Date: Mon Sep 28 15:12:50 2009 +0100 With Win32 now building DynaLoader in ext, it is now built with -noprototypes (as was always the case on *nix), so no need to explicitly disable prototype checking in DynaLoader.t any more, i.e. we can revert a2c4b2d6db383103b96e4733616b17d0a3bb0bd9 ----------------------------------------------------------------------- Summary of changes: ext/DynaLoader/t/DynaLoader.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ext/DynaLoader/t/DynaLoader.t b/ext/DynaLoader/t/DynaLoader.t index e9d55e7..fa07272 100644 --- a/ext/DynaLoader/t/DynaLoader.t +++ b/ext/DynaLoader/t/DynaLoader.t @@ -80,7 +80,7 @@ if ($Config{usedl}) { # .. for dl_load_file() SKIP: { skip "no dl_load_file with dl_none.xs", 2 unless $Config{usedl}; - eval { &DynaLoader::dl_load_file() }; + eval { DynaLoader::dl_load_file() }; like( $@, q{/^Usage: DynaLoader::dl_load_file\(filename, flags=0\)/}, "calling DynaLoader::dl_load_file() with no argument" ); -- Perl5 Master Repository
