Stas Bekman wrote:
[please don't forget to CC the list in your replies]

Nick wrote:

make is looking for:
blib/lib/Apache2/APR/ThreadMutex.pm

while it has to look for it in:
blib/lib/Apache2/APR/ThreadMutex/ThreadMutex.pm

This should fix the problem:

Index: lib/ModPerl/BuildMM.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildMM.pm,v
retrieving revision 1.20
diff -u -r1.20 BuildMM.pm
--- lib/ModPerl/BuildMM.pm      19 Aug 2004 07:42:46 -0000      1.20
+++ lib/ModPerl/BuildMM.pm      8 Sep 2004 04:03:02 -0000
@@ -271,7 +271,11 @@
     die "expecting 3 arguments: pm, pod, dst" unless @ARGV == 3;
     my($pm, $pod, $dst) = @ARGV;

-    die "glue_pod: can't find $pm"  unless -e $pm;
+    # it's possible that the .pm file is not existing
+    # (e.g. ThreadMutex.pm is not created on unless
+    # $apr_config->{HAS_THREADS})
+    return unless -e $pm;
+
     die "glue_pod: can't find $dst" unless -e $dst;

     # have we already glued the doc?


-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to