dougm       02/05/22 20:38:39

  Modified:    .        Changes Makefile.PL STATUS
  Log:
  Submitted by: Randy Kobes <[EMAIL PROTECTED]>
  Reviewed by:  dougm
  fix Win32 build problems with spaces in shell arguments
  
  Revision  Changes    Path
  1.644     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.643
  retrieving revision 1.644
  diff -u -r1.643 -r1.644
  --- Changes   23 May 2002 03:07:27 -0000      1.643
  +++ Changes   23 May 2002 03:38:39 -0000      1.644
  @@ -10,6 +10,9 @@
   
   =item 1.26_01-dev
   
  +fix Win32 build problems with spaces in shell arguments
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   make sure DynaLoader is loaded before XSLoader to workaround possible
   segv when using mod_perl as a dso with perl 5.6.1
   
  
  
  
  1.202     +1 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.201
  retrieving revision 1.202
  diff -u -r1.201 -r1.202
  --- Makefile.PL       23 May 2002 02:52:15 -0000      1.201
  +++ Makefile.PL       23 May 2002 03:38:39 -0000      1.202
  @@ -1104,7 +1104,7 @@
       cp "lib/mod_perl_hooks.pm.PL", "lib/mod_perl_hooks.pm"; 
   
       if ($Is_Win32) {
  -      my @args = ($^X, '-spi.bak ', ' -e ', "\"s/sub mod_perl::hooks.*/sub 
mod_perl::hooks { qw($hooks) }/\"", 'lib/mod_perl_hooks.pm');
  +      my @args = ($^X, '-spi.bak', '-e', "\"s/sub mod_perl::hooks.*/sub 
mod_perl::hooks { qw($hooks) }/\"", 'lib/mod_perl_hooks.pm');
         system(@args) == 0 or die "@args failed\n";
       }
       iedit "lib/mod_perl_hooks.pm", 
  
  
  
  1.19      +1 -7      modperl/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/modperl/STATUS,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- STATUS    14 May 2002 18:05:34 -0000      1.18
  +++ STATUS    23 May 2002 03:38:39 -0000      1.19
  @@ -1,5 +1,5 @@
   mod_perl 1.3 STATUS:
  -   Last modified at [$Date: 2002/05/14 18:05:34 $]
  +   Last modified at [$Date: 2002/05/23 03:38:39 $]
   
   
   Release:
  @@ -9,12 +9,6 @@
      
   
   Available Patches:
  -
  -    * Win32 build problems with spaces in shell arguments
  -        Report: http://marc.theaimsgroup.com/?l=apache-modperl&m=101681938513575&w=2
  -     Status: 
  -          patch available at
  -          http://marc.theaimsgroup.com/?l=apache-modperl&m=101729204503165&w=2
   
       * implement notes('error-notes') in Registry a la mod_cgo
           Report: http://marc.theaimsgroup.com/?l=apache-modperl&m=101862462900504&w=2
  
  
  


Reply via email to