comparison auto/summary @ 255:e6938ca7331a

nginx-0.0.2-2004-02-09-23:47:18 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 09 Feb 2004 20:47:18 +0000
parents b6793bc5034b
children 6468241715e6
comparison
equal deleted inserted replaced
254:98c77ca0f354 255:e6938ca7331a
22 NO) echo " + zlib library is not found" ;; 22 NO) echo " + zlib library is not found" ;;
23 *) echo " + using zlib library: $ZLIB" ;; 23 *) echo " + using zlib library: $ZLIB" ;;
24 esac 24 esac
25 25
26 echo 26 echo
27
28
29 if [ $HTTP_REWRITE = YES ]; then
30 if [ $PCRE = NONE -o $PCRE = NO ]; then
31 echo "$0: error: HTTP rewrite module requires PCRE library."
32 echo $ngx_n "You can disable the module by using" $ngx_c
33 echo "--without-http_rewrite_module option"
34 echo "or you have to enable PCRE support"
35 echo
36 exit 1
37 fi
38 fi
39
40
41 if [ $HTTP_GZIP = YES ]; then
42 if [ $ZLIB = NONE -o $ZLIB = NO ]; then
43 echo "$0: error: HTTP gzip module requires zlib library."
44 echo $ngx_n "You can disable the module by using" $ngx_c
45 echo "--without-http_gzip_module option"
46 echo "or you have to enable zlib support"
47 echo
48 exit 1
49 fi
50 fi