stas        02/05/14 08:43:03

  Modified:    ModPerl-Registry Makefile.PL
  Log:
  tidy up
  
  Revision  Changes    Path
  1.5       +9 -7      modperl-2.0/ModPerl-Registry/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/ModPerl-Registry/Makefile.PL,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.PL       6 Apr 2002 04:42:00 -0000       1.4
  +++ Makefile.PL       14 May 2002 15:43:03 -0000      1.5
  @@ -1,16 +1,18 @@
  -use lib qw(../lib);
  -use ModPerl::MM ();
  +use strict;
  +use warnings FATAL => 'all';
  +no warnings 'redefine';
  +
  +use lib qw(../lib ../Apache-Test/lib);
   
  -use lib qw(lib ../Apache-Test/lib);
  +use ModPerl::MM ();
   
   # enable 'make test|clean'
   use Apache::TestMM qw(test clean);
   
   # prerequisites
  -my %require =
  -  (
  -   "Apache::Test" => "", # any version will do?
  -  );
  +my %require = (
  +    "Apache::Test" => "", # any version will do?
  +);
   
   my @scripts = qw(t/TEST);
   
  
  
  


Reply via email to