stas        2004/09/06 09:03:07

  Modified:    src/docs/2.0/user/troubleshooting troubleshooting.pod
  Log:
  make problems with 'make' on *BSD platforms
  
  Revision  Changes    Path
  1.25      +19 -0     
modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod
  
  Index: troubleshooting.pod
  ===================================================================
  RCS file: 
/home/cvs/modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -u -r1.24 -r1.25
  --- troubleshooting.pod       26 Aug 2004 23:48:41 -0000      1.24
  +++ troubleshooting.pod       6 Sep 2004 16:03:07 -0000       1.25
  @@ -14,6 +14,25 @@
   =head1 Building and Installation
   
   
  +=head2 make: don't know how to make dynamic. Stop
  +
  +  cd "src/modules/perl" && make -f Makefile.modperl
  +  make: don't know how to make dynamic. Stop
  +
  +That's a MakeMaker bug on FreeBSD, OpenBSD and NetBSD (an may be other
  +platforms). See: http://rt.cpan.org/NoAuth/Bug.html?id=7417
  +
  +It was reported that using C<gmake> instead of C<make> solves the
  +problem.
  +
  +Another workaround, which allows continuing using C<make>, is to
  +change the autogenerated file F<src/modules/perl/Makefile.modperl>:
  +
  +  -my @skip = qw(dynamic test);
  +  +my @skip = qw(test);
  +   push @skip, q{static}
  +       unless (Apache::Build::BUILD_APREXT);
  +
   
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to