nginx/auto/summary

24 lines
528 B
Plaintext
Raw Normal View History

2003-12-15 04:10:27 +08:00
echo
echo "Configuration summary"
2003-12-19 16:15:11 +08:00
case $PCRE in
YES) echo " + using system PCRE library" ;;
NO) echo " + PCRE library is not found" ;;
*) echo " + using PCRE library: $PCRE" ;;
esac
2003-12-15 04:10:27 +08:00
case $MD5 in
YES) echo " + using system md5 library" ;;
NO) echo " + md5 library is not found" ;;
*) echo " + using md5 library: $MD5" ;;
esac
case $ZLIB in
YES) echo " + using system zlib library" ;;
NO) echo " + zlib library is not found" ;;
*) echo " + using zlib library: $ZLIB" ;;
esac
echo