You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ra...@apache.org on 2003/12/16 02:37:13 UTC

cvs commit: modperl-2.0/lib mod_perl.pm

randyk      2003/12/15 17:37:13

  Modified:    .        Makefile.PL
               lib      mod_perl.pm
  Log:
  Reviewed by:	stas
  add a name and abstract to mod_perl.pm, and an associated
  ABSTRACT_FROM attribute in WriteMakefile() of Makefile.pm,
  to help certain tools like on search.cpan.org and ppm in indexing.
  
  Revision  Changes    Path
  1.134     +6 -5      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.133
  retrieving revision 1.134
  diff -u -r1.133 -r1.134
  --- Makefile.PL	12 Dec 2003 07:14:40 -0000	1.133
  +++ Makefile.PL	16 Dec 2003 01:37:13 -0000	1.134
  @@ -62,11 +62,12 @@
   my @exe_files =  map "bin/$_", qw(mp2doc mp2bug);
   
   ModPerl::BuildMM::WriteMakefile(
  -    NAME      => 'mod_perl',
  -    VERSION   => $VERSION,
  -    EXE_FILES => \@exe_files,
  -    DEFINE    => get_DEFINE(),
  -    macro     => {
  +    NAME          => 'mod_perl',
  +    VERSION       => $VERSION,
  +    ABSTRACT_FROM => 'lib/mod_perl.pm',
  +    EXE_FILES     => \@exe_files,
  +    DEFINE        => get_DEFINE(),
  +    macro         => {
           MODPERL_SRC        => $code->path,
           MODPERL_MAKEFILE   => basename($build->default_file('makefile')),
           MAKE_F             => '$(MAKE) ' . (WIN32 ? '/f' : '-f'),
  
  
  
  1.13      +5 -0      modperl-2.0/lib/mod_perl.pm
  
  Index: mod_perl.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/mod_perl.pm,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- mod_perl.pm	10 Nov 2003 21:11:53 -0000	1.12
  +++ mod_perl.pm	16 Dec 2003 01:37:13 -0000	1.13
  @@ -9,3 +9,8 @@
   
   1;
   __END__
  +
  +=head1 NAME
  +
  +mod_perl - Embed a Perl interpreter in the Apache/2.x HTTP server
  +