diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-02-09 20:47:18 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-02-09 20:47:18 +0000 |
| commit | e9b2cb1b9d286cffa8053e41c87b12ce265c4f25 (patch) | |
| tree | 6b2c484ef0839fecb1f8226b38a95c61f919b0e1 /auto/summary | |
| parent | f14d69e4cc76323296f10f5fc1fefedd81f9f6ec (diff) | |
| download | nginx-e9b2cb1b9d286cffa8053e41c87b12ce265c4f25.tar.gz nginx-e9b2cb1b9d286cffa8053e41c87b12ce265c4f25.tar.bz2 | |
nginx-0.0.2-2004-02-09-23:47:18 import
Diffstat (limited to 'auto/summary')
| -rw-r--r-- | auto/summary | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/auto/summary b/auto/summary index 6546067e6..75ae60903 100644 --- a/auto/summary +++ b/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 |
