nginx/auto/summary

27 lines
692 B
Plaintext
Raw Normal View History

2003-12-14 14:10:27 -06:00
echo
echo "Configuration summary"
2003-12-19 02:15:11 -06:00
case $PCRE in
2004-02-09 01:46:43 -06:00
YES) echo " + using system PCRE library" ;;
NONE) echo " + PCRE library is not used" ;;
NO) echo " + PCRE library is not found" ;;
*) echo " + using PCRE library: $PCRE" ;;
2003-12-19 02:15:11 -06:00
esac
2003-12-14 14:10:27 -06:00
case $MD5 in
2004-02-09 01:46:43 -06:00
YES) echo " + using system md5 library" ;;
NONE) echo " + md5 library is not used" ;;
NO) echo " + md5 library is not found" ;;
*) echo " + using md5 library: $MD5" ;;
2003-12-14 14:10:27 -06:00
esac
case $ZLIB in
2004-02-09 01:46:43 -06:00
YES) echo " + using system zlib library" ;;
NONE) echo " + zlib library is not used" ;;
NO) echo " + zlib library is not found" ;;
*) echo " + using zlib library: $ZLIB" ;;
2003-12-14 14:10:27 -06:00
esac
echo