comparison auto/lib/perl/make @ 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 50bd986c5d63
comparison
equal deleted inserted replaced
147:d1b9f90d95f6 148:ea622d8acb38
1
2 # Copyright (C) Igor Sysoev
3
4
5 cat << END >> $NGX_MAKEFILE
6
7 $NGX_OBJS/src/http/modules/perl/blib/arch/auto/nginx/nginx.so: \
8 src/http/modules/perl/nginx.pm \
9 src/http/modules/perl/nginx.xs \
10 src/http/modules/perl/ngx_http_perl_module.h \
11 $NGX_OBJS/src/http/modules/perl/Makefile
12
13 cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
14
15 cd $NGX_OBJS/src/http/modules/perl && make
16
17
18 $NGX_OBJS/src/http/modules/perl/Makefile: src/http/modules/perl/Makefile.PL
19
20 cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
21 cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/
22 cp -p src/http/modules/perl/Makefile.PL $NGX_OBJS/src/http/modules/perl/
23
24 cd $NGX_OBJS/src/http/modules/perl \
25 && NGX_PERL_CFLAGS="$NGX_PERL_CFLAGS" \
26 NGX_PCRE=$PCRE \
27 NGX_ZLIB=$ZLIB \
28 NGX_OBJS=$NGX_OBJS \
29 $NGX_PERL Makefile.PL \
30 LIB=$NGX_PERL_MODULES
31
32
33 END