mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
nginx-0.0.2-2004-02-09-23:47:18 import
This commit is contained in:
24
auto/summary
24
auto/summary
@@ -24,3 +24,27 @@ case $ZLIB in
|
||||
esac
|
||||
|
||||
echo
|
||||
|
||||
|
||||
if [ $HTTP_REWRITE = YES ]; then
|
||||
if [ $PCRE = NONE -o $PCRE = NO ]; then
|
||||
echo "$0: error: HTTP rewrite module requires PCRE library."
|
||||
echo $ngx_n "You can disable the module by using" $ngx_c
|
||||
echo "--without-http_rewrite_module option"
|
||||
echo "or you have to enable PCRE support"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if [ $HTTP_GZIP = YES ]; then
|
||||
if [ $ZLIB = NONE -o $ZLIB = NO ]; then
|
||||
echo "$0: error: HTTP gzip module requires zlib library."
|
||||
echo $ngx_n "You can disable the module by using" $ngx_c
|
||||
echo "--without-http_gzip_module option"
|
||||
echo "or you have to enable zlib support"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user