stas        2004/08/19 00:42:47

  Modified:    lib/ModPerl BuildMM.pm
               .        Makefile.PL Changes
  Log:
  move the 'glue_pods' target to the be the first thing happening in 'make
  install' process. otherwise it gets on the way, when running 'make' a lot.
  
  Revision  Changes    Path
  1.20      +0 -3      modperl-2.0/lib/ModPerl/BuildMM.pm
  
  Index: BuildMM.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildMM.pm,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -u -r1.19 -r1.20
  --- BuildMM.pm        15 Aug 2004 10:08:30 -0000      1.19
  +++ BuildMM.pm        19 Aug 2004 07:42:46 -0000      1.20
  @@ -171,9 +171,6 @@
       my $self = shift;
       my $string = $self->MM::top_targets;
   
  -    ModPerl::MM::add_dep_after(\$string, "pure_all",
  -                               linkext => 'glue_pods');
  -
       return $string;
   }
   
  
  
  
  1.156     +3 -0      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.155
  retrieving revision 1.156
  diff -u -u -r1.155 -r1.156
  --- Makefile.PL       15 Aug 2004 22:47:14 -0000      1.155
  +++ Makefile.PL       19 Aug 2004 07:42:46 -0000      1.156
  @@ -610,6 +610,9 @@
   
       ModPerl::MM::add_dep_after(\$string, qw(install doc_install modperl_banner));
   
  +    # glue_pods target must come first
  +    ModPerl::MM::add_dep(\$string, pure_install => 'glue_pods');
  +
       $string;
   }
   
  
  
  
  1.456     +3 -3      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.455
  retrieving revision 1.456
  diff -u -u -r1.455 -r1.456
  --- Changes   18 Aug 2004 22:05:16 -0000      1.455
  +++ Changes   19 Aug 2004 07:42:47 -0000      1.456
  @@ -14,7 +14,7 @@
   
   replace the memory allocation for modperl filter handlers to use a
   temporary subpool of the ap_filter_t object. previously using perl's
  -safemalloc had problems on win32 (randonly my_perl == NULL) [Stas]
  +safemalloc had problems on win32 (randomly my_perl == NULL) [Stas]
   
   Apache::Module remove_loaded_module re-added [Gozer]
   
  @@ -40,8 +40,8 @@
   combine handler resolving failure error with the actual error, so
   there is only one logged entry [Stas]
   
  -pod manpages are now glued to all .pm files for which .pod exists
  -[Stas]
  +pod manpages are now glued to all .pm files for which .pod exists at
  +'make install' phase [Stas]
   
   Apache::RequestIO::sendfile() now indicates which file it has failed
   to open on failure. [Stas]
  
  
  

Reply via email to