In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/c2d21e7a640527422528893466b86d277a8dac30?hp=a4c678398533b657275ce51755ac2edd70958800>

- Log -----------------------------------------------------------------
commit c2d21e7a640527422528893466b86d277a8dac30
Author: Father Chrysostomos <[email protected]>
Date:   Mon Dec 1 16:32:06 2014 -0800

    bench.pl: Load IO::File explicitly
    
    to work with older perls that don’t load it automatically.
    
    $ Porting/bench.pl perl5.8.8 perl5.8.7
    Can't locate object method "blocking" via package "IO::File" at 
Porting/bench.pl line 737.
    
    (In this case the system perl is 5.12.4.)

M       Porting/bench.pl

commit 300b15258e64faeaf7a97ca0985312c7228fb749
Author: Father Chrysostomos <[email protected]>
Date:   Mon Dec 1 16:29:22 2014 -0800

    bench.pl: Correct optional = in pod synopsis

M       Porting/bench.pl
-----------------------------------------------------------------------

Summary of changes:
 Porting/bench.pl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Porting/bench.pl b/Porting/bench.pl
index 2145d70..dc90a8f 100755
--- a/Porting/bench.pl
+++ b/Porting/bench.pl
@@ -14,7 +14,7 @@ perls.
     # Basic: run the tests in t/perf/benchmarks against two or
     # more perls
 
-    bench.pl [options] perl1=[label1] perl2[=label2] ...
+    bench.pl [options] perl1[=label1] perl2[=label2] ...
 
     # Run bench.pl's own built-in sanity tests
 
@@ -205,6 +205,7 @@ use strict;
 use Getopt::Long qw(:config no_auto_abbrev);
 use IPC::Open2 ();
 use IO::Select;
+use IO::File;
 use POSIX ":sys_wait_h";
 
 # The version of the file format used to save data. We refuse to process

--
Perl5 Master Repository

Reply via email to