7 | 7 |
|
8 | 8 |
else
|
9 | 9 |
case $PCRE in
|
10 | |
YES) echo " + using system PCRE library" ;;
|
11 | |
NONE) echo " + PCRE library is not used" ;;
|
12 | |
NO) echo " + PCRE library is not found" ;;
|
13 | |
*) echo " + using PCRE library: $PCRE" ;;
|
|
10 |
YES) echo " using system PCRE library" ;;
|
|
11 |
NONE) echo " PCRE library is not used" ;;
|
|
12 |
NO) echo " PCRE library is not found" ;;
|
|
13 |
*) echo " using PCRE library: $PCRE" ;;
|
14 | 14 |
esac
|
15 | 15 |
fi
|
16 | 16 |
|
17 | 17 |
case $MD5 in
|
18 | |
YES) echo " + md5: using system $MD5_LIB library" ;;
|
19 | |
NONE) echo " + md5 library is not used" ;;
|
20 | |
NO) echo " + md5 library is not found" ;;
|
21 | |
*) echo " + using md5 library: $MD5" ;;
|
|
18 |
YES) echo " md5: using system $MD5_LIB library" ;;
|
|
19 |
NONE) echo " md5 library is not used" ;;
|
|
20 |
NO) echo " md5 library is not found" ;;
|
|
21 |
*) echo " using md5 library: $MD5" ;;
|
22 | 22 |
esac
|
23 | 23 |
|
24 | 24 |
case $OPENSSL in
|
25 | |
YES) echo " + using system OpenSSL library" ;;
|
26 | |
NONE) echo " + OpenSSL library is not used" ;;
|
27 | |
NO) echo " + OpenSSL library is not found" ;;
|
28 | |
*) echo " + using OpenSSL library: $OPENSSL" ;;
|
|
25 |
YES) echo " using system OpenSSL library" ;;
|
|
26 |
NONE) echo " OpenSSL library is not used" ;;
|
|
27 |
NO) echo " OpenSSL library is not found" ;;
|
|
28 |
*) echo " using OpenSSL library: $OPENSSL" ;;
|
29 | 29 |
esac
|
30 | 30 |
|
31 | 31 |
case $ZLIB in
|
32 | |
YES) echo " + using system zlib library" ;;
|
33 | |
NONE) echo " + zlib library is not used" ;;
|
34 | |
NO) echo " + zlib library is not found" ;;
|
35 | |
*) echo " + using zlib library: $ZLIB" ;;
|
|
32 |
YES) echo " using system zlib library" ;;
|
|
33 |
NONE) echo " zlib library is not used" ;;
|
|
34 |
NO) echo " zlib library is not found" ;;
|
|
35 |
*) echo " using zlib library: $ZLIB" ;;
|
36 | 36 |
esac
|
37 | 37 |
|
38 | 38 |
echo
|
|
64 | 64 |
fi
|
65 | 65 |
|
66 | 66 |
|
67 | |
echo " nginx path prefix: $PREFIX"
|
68 | |
echo " nginx binary file: $SBIN_PATH"
|
69 | |
echo " nginx configuration file: $CONF_PATH"
|
70 | |
echo " nginx pid file: $PID_PATH"
|
71 | |
echo " nginx error log file: $ERROR_LOG_PATH"
|
72 | |
echo " nginx http access log file: $HTTP_LOG_PATH"
|
|
67 |
echo " nginx path prefix: $PREFIX"
|
|
68 |
echo " nginx binary file: $SBIN_PATH"
|
|
69 |
echo " nginx configuration file: $CONF_PATH"
|
|
70 |
echo " nginx pid file: $PID_PATH"
|
|
71 |
echo " nginx error log file: $ERROR_LOG_PATH"
|
|
72 |
echo " nginx http access log file: $HTTP_LOG_PATH"
|
73 | 73 |
echo
|