comparison auto/summary @ 26:45fe5b98a9de NGINX_0_1_13

nginx 0.1.13 *) 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 <http://sysoev.ru>
date Tue, 21 Dec 2004 00:00:00 +0300
parents 6f8b0dc0f8dd
children 7ca9bdc82b3f
comparison
equal deleted inserted replaced
25:21488c53e135 26:45fe5b98a9de
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" ;;