2006-01-16 08:56:53 -06:00
|
|
|
|
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 09:07:43 -06:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2006-01-16 08:56:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
cat << END >> $NGX_MAKEFILE
|
|
|
|
|
|
|
|
$NGX_OBJS/src/http/modules/perl/blib/arch/auto/nginx/nginx.so: \
|
|
|
|
src/http/modules/perl/nginx.pm \
|
|
|
|
src/http/modules/perl/nginx.xs \
|
|
|
|
src/http/modules/perl/ngx_http_perl_module.h \
|
|
|
|
$NGX_OBJS/src/http/modules/perl/Makefile
|
|
|
|
cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
|
|
|
|
|
2012-09-11 07:43:59 -05:00
|
|
|
cd $NGX_OBJS/src/http/modules/perl && \$(MAKE)
|
2006-01-16 08:56:53 -06:00
|
|
|
|
2006-10-05 09:18:08 -05:00
|
|
|
rm -rf $NGX_OBJS/install_perl
|
|
|
|
|
2006-01-16 08:56:53 -06:00
|
|
|
|
2006-01-17 14:04:32 -06:00
|
|
|
$NGX_OBJS/src/http/modules/perl/Makefile: \
|
|
|
|
src/http/modules/perl/Makefile.PL \
|
|
|
|
src/http/modules/perl/nginx.pm
|
2006-01-16 08:56:53 -06:00
|
|
|
cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
|
|
|
|
cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/
|
|
|
|
cp -p src/http/modules/perl/Makefile.PL $NGX_OBJS/src/http/modules/perl/
|
|
|
|
|
|
|
|
cd $NGX_OBJS/src/http/modules/perl \
|
2006-08-30 05:39:17 -05:00
|
|
|
&& NGX_PM_CFLAGS="\$(NGX_PM_CFLAGS) -g $NGX_CC_OPT" \
|
2012-12-03 10:00:26 -06:00
|
|
|
NGX_INCS="$CORE_INCS $NGX_OBJS $HTTP_INCS" \
|
2006-01-16 08:56:53 -06:00
|
|
|
$NGX_PERL Makefile.PL \
|
2006-12-24 12:12:18 -06:00
|
|
|
LIB=$NGX_PERL_MODULES \
|
2006-12-24 12:23:11 -06:00
|
|
|
INSTALLSITEMAN3DIR=$NGX_PERL_MODULES_MAN
|
2006-01-16 08:56:53 -06:00
|
|
|
|
|
|
|
END
|