dougm       02/04/06 19:44:07

  Modified:    .        Makefile.PL
  Log:
  more hints.  louder hints
  
  Revision  Changes    Path
  1.73      +10 -3     modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- Makefile.PL       7 Apr 2002 02:56:52 -0000       1.72
  +++ Makefile.PL       7 Apr 2002 03:44:07 -0000       1.73
  @@ -184,13 +184,20 @@
   
       $code->generate($build);
   
  -    printf "Will build mod_perl %s as %s\n",
  +    warning sprintf "mod_perl will be built %s as %s",
         $build->is_dynamic ? "shared" : "static",
           $build->{"MODPERL_LIB"};
   
  +    if ($build->is_dynamic) {
  +        warning "You'll need to add the following to httpd.conf:",
  +                " LoadModule perl_module modules/$build->{MODPERL_LIB}\n";
  +    }
  +
       if ($build->{MP_INST_APACHE2}) {
  -        print "Will install Apache Perl modules relative to Apache2/\n";
  -        print "Don't forget to 'use Apache2 ();' in a startup script\n";
  +        warning "Apache Perl modules will be installed relative to Apache2/";
  +        warning "Don't forget to:",
  +                "- configure 'PerlModule Apache2' in httpd.conf",
  +                "- or 'use Apache2 ();' in a startup script";
       }
   
       $build->save;
  
  
  


Reply via email to