Boysenberry Payne wrote:
How do I apply the patch? I'm still a little wet behind the ears, please excuse me...
For one this simply, you could just go edit the INSTALLED version of 
Reload.pm...

On the other hand in general, you would
cd mod_perl-2.0.2-src
patch < /path/to/patch
make all install


Thanks,
Boysenberry

boysenberrys.com | habitatlife.com | selfgnosis.com

On Nov 1, 2005, at 10:20 AM, Geoffrey Young wrote:


I think this is the same problem that just came up in a different
circumstance - $INC{'mod_perl.pm'} being a virtual file in mp2.

try this patch

--Geoff
Index: lib/Apache2/Reload.pm
===================================================================
--- lib/Apache2/Reload.pm    (revision 328346)
+++ lib/Apache2/Reload.pm    (working copy)
@@ -135,6 +135,7 @@
         my $file = $Apache2::Reload::INCS{$key};

         next unless defined $file;
+        next unless -f $file;       # don't try to reload /dev/null
         next if @watch_dirs && !grep { $file =~ /^$_/ } @watch_dirs;
         warn "Apache2::Reload: Checking mtime of $key\n" if $DEBUG;



--
END
------------------------------------------------------------
    What doesn't kill us can only make us stronger.
                Nothing is impossible.
                                
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
       http://www.liquidation.com
       http://www.uksurplus.com
       http://www.govliquidation.com
       http://www.gowholesale.com

Reply via email to