cvs commit: modperl-2.0 Makefile.PL

2003-01-30 Thread stas
stas2003/01/30 16:52:22

  Modified:.Makefile.PL
  Log:
  use a portable $(MAKE) instead of just 'make'
  
  Revision  ChangesPath
  1.91  +1 -1  modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -r1.90 -r1.91
  --- Makefile.PL   23 Jan 2003 05:16:30 -  1.90
  +++ Makefile.PL   31 Jan 2003 00:52:21 -  1.91
  @@ -460,7 +460,7 @@
$(PASSENV) \
$(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
t/TEST
  - cd ModPerl-Registry  make test
  + cd ModPerl-Registry  $(MAKE) test
   
   test :: pure_all run_tests test_clean
   EOF
  
  
  



cvs commit: modperl-2.0 Makefile.PL Changes

2003-01-22 Thread stas
stas2003/01/22 21:16:30

  Modified:.Makefile.PL Changes
  Log:
  the top level 'make test' now descends into the ModPerl-Registry dir
  to run 'make test' there
  
  Revision  ChangesPath
  1.90  +24 -1 modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- Makefile.PL   11 Jan 2003 03:20:54 -  1.89
  +++ Makefile.PL   23 Jan 2003 05:16:30 -  1.90
  @@ -29,7 +29,6 @@
   use Apache::TestReportPerl ();
   use Apache::TestSmokePerl ();
   use Apache::TestTrace;
  -use Apache::TestMM qw(test);
   use ModPerl::TestRun ();
   use ModPerl::Code ();
   use ModPerl::MM ();
  @@ -442,6 +441,30 @@
   ModPerl::MM::add_dep(\$string, clean = 'modperl_src_clean');
   ModPerl::MM::add_dep(\$string, clean = 'test_clean');
   $string;
  +}
  +
  +sub MY::test {
  +
  +my $env = Apache::TestConfig-passenv_makestr();
  +
  +my $preamble = Apache::TestConfig::WIN32 ?  : EOF;
  +PASSENV = $env
  +EOF
  +
  +return $preamble . 'EOF';
  +test_clean :
  + $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
  + t/TEST -clean
  + 
  +run_tests : test_clean
  + $(PASSENV) \
  + $(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
  + t/TEST
  + cd ModPerl-Registry  make test
  +
  +test :: pure_all run_tests test_clean
  +EOF
  +
   }
   
   sub MY::postamble {
  
  
  
  1.112 +3 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.111
  retrieving revision 1.112
  diff -u -r1.111 -r1.112
  --- Changes   23 Jan 2003 04:06:38 -  1.111
  +++ Changes   23 Jan 2003 05:16:30 -  1.112
  @@ -10,6 +10,9 @@
   
   =item 1.99_09-dev
   
  +the top level 'make test' now descend into the ModPerl-Registry dir
  +to run 'make test' there [Stas]
  +
   Apache::Test: don't inherit loading of the mod_perl object from the
   system-wide config, since we already add it [Stas]
   
  
  
  



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 Makefile.PL

2002-06-29 Thread dougm

dougm   2002/06/29 12:44:04

  Modified:.Makefile.PL
  Log:
  now that APLOG_TOCLIENT is #ifdef-ed, allow compilation with 2.0.35
  
  Revision  ChangesPath
  1.87  +1 -1  modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- Makefile.PL   23 Jun 2002 21:46:09 -  1.86
  +++ Makefile.PL   29 Jun 2002 19:44:04 -  1.87
   -2,7 +2,7 
   use strict;
   use warnings FATAL = 'all';
   
  -my $min_httpd_version = '2.0.36';
  +my $min_httpd_version = '2.0.35';
   
   my($old_modperl_version, $old_modperl_pm);