You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2011/02/05 06:30:51 UTC

svn commit: r1067394 - /httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm

Author: joes
Date: Sat Feb  5 05:30:51 2011
New Revision: 1067394

URL: http://svn.apache.org/viewvc?rev=1067394&view=rev
Log:
address non-lazy dl

Modified:
    httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm

Modified: httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm?rev=1067394&r1=1067393&r2=1067394&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/APR/Request/Magic.pm Sat Feb  5 05:30:51 2011
@@ -1,6 +1,6 @@
 package APR::Request::Magic;
 require base;
-eval { require APR::Request::Apache2; };
+eval { local $ENV{PERL_DL_NONLAZY} = 1; require APR::Request::Apache2; };
 if ($@) {
     require APR::Request::CGI;
     require APR::Pool;