mod_perl logo perl icon
previous page: Apache2::SizeLimit - Because size does matter.page up: mod_perl 2.0 APInext page: libapreq modules

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






Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet
The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes
mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
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
mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt


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: Apache2::SizeLimit - Because size does matter.page up: mod_perl 2.0 APInext page: libapreq modules