3
0
mirror of https://github.com/nginx/nginx.git synced 2024-12-26 08:51:03 -06:00

Fixed build with embedded perl in certain setups (ticket ).

This commit is contained in:
Ruslan Ermilov 2012-12-03 16:00:26 +00:00
parent f707bea0ee
commit 760c55a702
2 changed files with 4 additions and 17 deletions
auto/lib/perl
src/http/modules/perl

View File

@ -26,9 +26,7 @@ $NGX_OBJS/src/http/modules/perl/Makefile: \
cd $NGX_OBJS/src/http/modules/perl \
&& NGX_PM_CFLAGS="\$(NGX_PM_CFLAGS) -g $NGX_CC_OPT" \
NGX_PCRE=$PCRE \
NGX_OBJS=$NGX_OBJS \
NGX_OPENSSL=$OPENSSL \
NGX_INCS="$CORE_INCS $NGX_OBJS $HTTP_INCS" \
$NGX_PERL Makefile.PL \
LIB=$NGX_PERL_MODULES \
INSTALLSITEMAN3DIR=$NGX_PERL_MODULES_MAN

View File

@ -16,20 +16,9 @@ WriteMakefile(
CCFLAGS => "$ENV{NGX_PM_CFLAGS}",
OPTIMIZE => '-O',
INC => "-I ../../../../../src/core " .
"-I ../../../../../src/event " .
"-I ../../../../../src/os/unix " .
"-I ../../../../../src/http " .
"-I ../../../../../src/http/modules " .
"-I ../../../../../src/http/modules/perl " .
"-I ../../../../../$ENV{NGX_OBJS} " .
($ENV{NGX_PCRE} =~ /^(YES|NO)/ ? "" :
($ENV{NGX_PCRE} =~ m#^/# ? "-I $ENV{NGX_PCRE} " :
"-I ../../../../../$ENV{NGX_PCRE} ")) .
($ENV{NGX_OPENSSL} =~ /^(YES|NO)/ ? "" :
($ENV{NGX_OPENSSL} =~ m#^/# ?
"-I $ENV{NGX_OPENSSL}/.openssl/include " :
"-I ../../../../../$ENV{NGX_OPENSSL}/.openssl/include ")),
INC => join(" ", map {
m#^/# ? "-I $_" : "-I ../../../../../$_"
} (split /\s+/, $ENV{NGX_INCS})),
depend => {
'nginx.c' =>