mod_perl logo
perl icon







previous page: Apache::Status - Embedded interpreter status informationpage up: mod_perl APIsno next page


ModPerl::BuildMM -- A "subclass" of ModPerl::MM used for building mod_perl 2.0











Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet


Table of Contents

SYNOPSIS

  use ModPerl::BuildMM;
  
  # ModPerl::BuildMM takes care of doing all the dirty job of overriding 
  ModPerl::BuildMM::WriteMakefile(...);
  # if there is a need to extend the methods 
  sub MY::postamble {
      my $self = shift;
  
      my $string = $self->ModPerl::BuildMM::MY::postamble;
  
      $string .= "\nmydist : manifest tardist\n";
  
      return $string;
  }


TOP

DESCRIPTION

ModPerl::BuildMM is a "subclass" of ModPerl::MM used for building mod_perl 2.0. Refer to ModPerl::MM manpage.



TOP

OVERRIDEN METHODS

ModPerl::BuildMM overrides the following methods:



TOP

ModPerl::BuildMM::MY::constants



TOP

ModPerl::BuildMM::MY::top_targets



TOP

ModPerl::BuildMM::MY::postamble



TOP

ModPerl::BuildMM::MY::post_initialize



TOP

ModPerl::BuildMM::MY::libscan







TOP
previous page: Apache::Status - Embedded interpreter status informationpage up: mod_perl APIsno next page