From: Steve Hay Date: Mon, 28 Sep 2009 14:12:50 +0000 (+0100) Subject: With Win32 now building DynaLoader in ext, it is now built with X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=993f042350da76bc3fd9ee9391fd43c55e148ad4;p=p5sagit%2Fp5-mst-13.2.git 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 --- 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" );