mirror of
https://github.com/nginx/nginx.git
synced 2024-12-03 21:18:59 +08:00
9bf11aa193
*) Feature: the ngx_http_perl_module. *) Change: the "valid_referers" directive allows the referreres without URI part.
24 lines
444 B
Plaintext
24 lines
444 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
if [ $PCRE != NONE -a $PCRE != NO -a $PCRE != YES ]; then
|
|
. auto/lib/pcre/make
|
|
fi
|
|
|
|
if [ $MD5 != NONE -a $MD5 != NO -a $MD5 != YES ]; then
|
|
. auto/lib/md5/make
|
|
fi
|
|
|
|
if [ $OPENSSL != NONE -a $OPENSSL != NO -a $OPENSSL != YES ]; then
|
|
. auto/lib/openssl/make
|
|
fi
|
|
|
|
if [ $ZLIB != NONE -a $ZLIB != NO -a $ZLIB != YES ]; then
|
|
. auto/lib/zlib/make
|
|
fi
|
|
|
|
if [ $USE_PERL = YES ]; then
|
|
. auto/lib/perl/make
|
|
fi
|