comparison auto/summary @ 477:ad1e9ebf93bb release-0.1.13

nginx-0.1.13-RELEASE import *) Feature: the server_names_hash and server_names_hash_threshold directives. *) Bugfix: the *.domain.tld names in the "server_name" directive did not work. *) Bugfix: the %request_length log parameter logged the incorrect length.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 21 Dec 2004 12:30:30 +0000
parents 2ff194b74f1e
children c52408583801
comparison
equal deleted inserted replaced
476:7e8b84ab09e9 477:ad1e9ebf93bb
26 NO) echo " + PCRE library is not found" ;; 26 NO) echo " + PCRE library is not found" ;;
27 *) echo " + using PCRE library: $PCRE" ;; 27 *) echo " + using PCRE library: $PCRE" ;;
28 esac 28 esac
29 fi 29 fi
30 30
31 case $MD5 in
32 YES) echo " + md5: using system $MD5_LIB library" ;;
33 NONE) echo " + md5 library is not used" ;;
34 NO) echo " + md5 library is not found" ;;
35 *) echo " + using md5 library: $MD5" ;;
36 esac
37
38 case $OPENSSL in 31 case $OPENSSL in
39 YES) echo " + using system OpenSSL library" ;; 32 YES) echo " + using system OpenSSL library" ;;
40 NONE) echo " + OpenSSL library is not used" ;; 33 NONE) echo " + OpenSSL library is not used" ;;
41 NO) echo " + OpenSSL library is not found" ;; 34 NO) echo " + OpenSSL library is not found" ;;
42 *) echo " + using OpenSSL library: $OPENSSL" ;; 35 *) echo " + using OpenSSL library: $OPENSSL" ;;
36 esac
37
38 case $MD5 in
39 YES)
40 case $OPENSSL in
41 NONE|NO) echo " + md5: using system $MD5_LIB library" ;;
42 *) echo " + md5: using OpenSSL library" ;;
43 esac
44 ;;
45
46 NONE) echo " + md5 library is not used" ;;
47 NO) echo " + md5 library is not found" ;;
48 *) echo " + using md5 library: $MD5" ;;
43 esac 49 esac
44 50
45 case $ZLIB in 51 case $ZLIB in
46 YES) echo " + using system zlib library" ;; 52 YES) echo " + using system zlib library" ;;
47 NONE) echo " + zlib library is not used" ;; 53 NONE) echo " + zlib library is not used" ;;