comparison src/http/modules/perl/Makefile.PL @ 148:ea622d8acb38 NGINX_0_3_21

nginx 0.3.21 *) Feature: the ngx_http_perl_module. *) Change: the "valid_referers" directive allows the referreres without URI part.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Jan 2006 00:00:00 +0300
parents
children 3314be145cb9
comparison
equal deleted inserted replaced
147:d1b9f90d95f6 148:ea622d8acb38
1
2 # Copyright (C) Igor Sysoev
3
4 use 5.006001;
5 use ExtUtils::MakeMaker;
6
7 WriteMakefile(
8 NAME => 'nginx',
9 VERSION_FROM => 'nginx.pm', # finds $VERSION
10 PREREQ_PM => {}, # e.g., Module::Name => 1.1
11
12 ABSTRACT_FROM => 'nginx.pm', # retrieve abstract from module
13 AUTHOR => 'Igor Sysoev',
14
15 CCFLAGS => "$ENV{NGX_PERL_CFLAGS}",
16
17 INC => "-I ../../../../../src/core " .
18 "-I ../../../../../src/event " .
19 "-I ../../../../../src/os/unix " .
20 "-I ../../../../../src/http " .
21 "-I ../../../../../src/http/modules " .
22 "-I ../../../../../src/http/modules/perl " .
23 "-I ../../../../../$ENV{NGX_OBJS} " .
24 "-I ../../../../../$ENV{NGX_PCRE} " .
25 "-I ../../../../../$ENV{NGX_ZLIB} ",
26
27 depend => {
28 'nginx.c' =>
29 "../../../../../src/http/modules/perl/ngx_http_perl_module.h"
30 },
31
32 PM => {
33 'nginx.pm' => '$(INST_LIBDIR)/nginx.pm'
34 }
35 );