cvs commit: modperl-2.0 Changes

2002-12-14 Thread stas
stas2002/12/14 09:29:34

  Modified:lib/Apache Build.pm
   .Changes
  Log:
  When installing the mod_perl shared object, first need to check
  whether the directory 'modules' already exists, and create it if not.
  Submitted by: Randy Kobes <[EMAIL PROTECTED]>
  Reviewed by:  stas
  
  Revision  ChangesPath
  1.109 +3 -0  modperl-2.0/lib/Apache/Build.pm
  
  Index: Build.pm
  ===
  RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
  retrieving revision 1.108
  retrieving revision 1.109
  diff -u -r1.108 -r1.109
  --- Build.pm  28 Nov 2002 16:31:36 -  1.108
  +++ Build.pm  14 Dec 2002 17:29:34 -  1.109
  @@ -1057,6 +1057,9 @@
   lib: $(MODPERL_LIB)
   
   install:
  + $(MODPERL_PERLPATH) -e "exit ! -d qq{$(MODPERL_AP_LIBEXECDIR)}" || \
  + $(MODPERL_PERLPATH) -MExtUtils::Command  \
  + -e mkpath $(MODPERL_AP_LIBEXECDIR)
$(MODPERL_TEST_F) $(MODPERL_LIB_DSO) && \
$(MODPERL_CP) $(MODPERL_LIB_DSO) $(MODPERL_AP_LIBEXECDIR)
   
  
  
  
  1.81  +4 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- Changes   13 Dec 2002 11:12:35 -  1.80
  +++ Changes   14 Dec 2002 17:29:34 -  1.81
  @@ -10,6 +10,10 @@
   
   =item 1.99_08-dev
   
  +When installing the mod_perl shared object, first need to check
  +whether the directory 'modules' already exists, and create it if not.
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   Add a capability to tune the test configuration sections ordering
   in Apache::TestConfigPerl [Stas Bekman]
   
  
  
  



cvs commit: modperl-2.0 Makefile.PL Changes

2002-12-14 Thread stas
stas2002/12/14 20:03:43

  Modified:.Makefile.PL Changes
  Log:
  Strongly suggest win32 users to upgrade to 5.8.0, if they run 5.6.x
  Submitted by: Randy Kobes <[EMAIL PROTECTED]>
  Reviewed by:  stas
  
  Revision  ChangesPath
  1.88  +7 -2  modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- Makefile.PL   29 Jun 2002 19:44:04 -  1.87
  +++ Makefile.PL   15 Dec 2002 04:03:43 -  1.88
  @@ -298,13 +298,18 @@
   sub perl_version_check {
   if ($] < 5.006_001) {
   error "You are running Perl version 5.6.0\n" .
  -  "We strongly suggest you upgrade to at least 5.6.1";
  +"We strongly suggest you upgrade to at least 5.6.1";
   }
   
   if ($] >= 5.007 and $] < 5.008) {
   error "5.7.x development versions of Perl are no longer supported\n" .
  -  "Upgrade to 5.8.0 or higher";
  +"Upgrade to 5.8.0 or higher";
   exit 1;
  +}
  +
  +if (WIN32 and $] < 5.008) {
  +error "You are running a Perl version 5.6.x\n" .
  +"We strongly suggest you upgrade to 5.8\n";
   }
   }
   
  
  
  
  1.82  +3 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.81
  retrieving revision 1.82
  diff -u -r1.81 -r1.82
  --- Changes   14 Dec 2002 17:29:34 -  1.81
  +++ Changes   15 Dec 2002 04:03:43 -  1.82
  @@ -10,6 +10,9 @@
   
   =item 1.99_08-dev
   
  +Strongly suggest win32 users to upgrade to 5.8.0, if they run 5.6.x
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   When installing the mod_perl shared object, first need to check
   whether the directory 'modules' already exists, and create it if not.
   [Randy Kobes <[EMAIL PROTECTED]>]
  
  
  



cvs commit: modperl-2.0 Changes

2002-12-14 Thread stas
stas2002/12/14 23:43:40

  Modified:t/filter reverse.t
   .Changes
  Log:
  Adjust the reverse filter test to work on win32 (remove trailing \r)
  Submitted by: Randy Kobes <[EMAIL PROTECTED]>
  Reviewed by:  stas
  
  Revision  ChangesPath
  1.4   +1 -0  modperl-2.0/t/filter/reverse.t
  
  Index: reverse.t
  ===
  RCS file: /home/cvs/modperl-2.0/t/filter/reverse.t,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- reverse.t 25 Nov 2002 22:46:28 -  1.3
  +++ reverse.t 15 Dec 2002 07:43:40 -  1.4
  @@ -25,5 +25,6 @@
   # test the filtering of the non-mod_perl response handler (file)
   my $location = '/filter/reverse.txt';
   my $response = GET_BODY $location;
  +$response =~ s/\r//g;
   ok t_cmp($expected, $response, "reverse filter");
   }
  
  
  
  1.83  +3 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- Changes   15 Dec 2002 04:03:43 -  1.82
  +++ Changes   15 Dec 2002 07:43:40 -  1.83
  @@ -10,6 +10,9 @@
   
   =item 1.99_08-dev
   
  +Adjust the reverse filter test to work on win32 (remove trailing \r)
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   Strongly suggest win32 users to upgrade to 5.8.0, if they run 5.6.x
   [Randy Kobes <[EMAIL PROTECTED]>]