stas        2003/02/03 17:53:36

  Modified:    lib/ModPerl MM.pm
  Log:
  need -MApache2 in 3rd party modules to run MOD_INSTALL macro
  
  Revision  Changes    Path
  1.22      +3 -1      modperl-2.0/lib/ModPerl/MM.pm
  
  Index: MM.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/MM.pm,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- MM.pm     23 Jun 2002 21:46:54 -0000      1.21
  +++ MM.pm     4 Feb 2003 01:53:36 -0000       1.22
  @@ -11,7 +11,9 @@
   
   #to override MakeMaker MOD_INSTALL macro
   sub mod_install {
  -    q{$(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MModPerl::MM \\}."\n" .
  +    # XXX: adding -MApache2 here so 3rd party modules could use this macro,
  +    # may be should have different macros for core build and modules build
  +    q{$(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MApache2 -MModPerl::MM \\}."\n" .
       q{-e "ModPerl::MM::install({@ARGV},'$(VERBINST)',0,'$(UNINST)');"}."\n";
   }
   
  
  
  


Reply via email to