You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2014/02/06 10:15:42 UTC

svn commit: r1565129 - /perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm

Author: stevehay
Date: Thu Feb  6 09:15:41 2014
New Revision: 1565129

URL: http://svn.apache.org/r1565129
Log:
Correct perl version check in APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED().
Sadly this was not the cause of t/apache/subprocess.t failing on Windows with httpd-2.4.x.

Modified:
    perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm

Modified: perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm
URL: http://svn.apache.org/viewvc/perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm?rev=1565129&r1=1565128&r2=1565129&view=diff
==============================================================================
--- perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm (original)
+++ perl/modperl/branches/httpd24threading/xs/APR/PerlIO/PerlIO.pm Thu Feb  6 09:15:41 2014
@@ -22,7 +22,7 @@ our $VERSION = '0.009000';
 
 # The PerlIO layer is available only since 5.8.0 (5.7.2@13534)
 use Config;
-use constant PERLIO_LAYERS_ARE_ENABLED => $Config{useperlio} && $] >= 5.00703;
+use constant PERLIO_LAYERS_ARE_ENABLED => $Config{useperlio} && $] >= 5.007003;
 
 use APR ();
 use APR::XSLoader ();