Manual Pages for UNIX Darwin command on man Apache::src
MyWebUniversity

Manual Pages for UNIX Darwin command on man Apache::src

Apache::src(3) User Contributed Perl Documentation Apache::src(3)

my $src = Apache::src->new;

for my $path ($src->find) {

my $mmn = $src->modulemagicnumber($path);

my $v = $src->httpdversion($path);

next unless $v;

print "path = $path ($mmn,$v)\n";

my $dir = $src->prompt("Configure with $path?"); }

NAME

Apache::src - Methods for locating and parsing bits of Apache source

code

SYNOPSIS

use Apache::src ();

my $src = Apache::src->new;

DESCRIPTION

This module provides methods for locating and parsing bits of Apache source code. MMEETTHHOODDSS new Create an object blessed into the AAppaacchhee::::ssrrcc class.

my $src = Apache::src->new;

dir Top level directory where source files are located.

my $dir = $src->dir;

-d $dir or die "can't stat $dir $!\n";

main Apache's source tree was reorganized during development of version 1.3. So, common header files such as "httpd.h" are in different directories between versions less than 1.3 and those equal to or greater. This method will return the right directory. Example:

-e join "/", $src->main, "httpd.h" or die "can't stat httpd.h\n";

find Searches for apache source directories, return a list of those found. Example:

for my $dir ($src->find) {

my $yn = prompt "Configure with $dir ?", "y";

... }

inc Print include paths for MakeMaker's IINNCC argument to "WriteMake-

file". Example: use ExtUtils::MakeMaker;

use Apache::src ();

WriteMakefile(

'NAME' => 'Apache::Module',

'VERSION' => '0.01',

'INC' => Apache::src->new->inc,

); modulemagicnumber Return the MMOODDUULLEEMMAAGGIICCNNUUMMBBEERR defined in the apache source. Example:

my $mmn = $src->modulemagicnumber;

httpdversion Return the server version. Example:

my $v = $src->httpdversion;

otherldflags Return other ld flags for MakeMaker's ddyynnaammiicclliibb argument to "WriteMakefile". This might be needed on systems like AIX that need special flags to the linker to be able to reference modperl or httpd symbols. Example: use ExtUtils::MakeMaker;

use Apache::src ();

WriteMakefile(

'NAME' => 'Apache::Module',

'VERSION' => '0.01',

'INC' => Apache::src->new->inc,

'dynamiclib' => {

'OTHERLDFLAGS' => Apache::src->new->otherldflags,

}, ); AUTHOR Doug MacEachern

perl v5.8.6 2000-03-30 Apache::src(3)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™