view auto/summary @ 245:e6c005b66b3a

nginx-0.0.1-2004-01-30-00:45:01 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 29 Jan 2004 21:45:01 +0000
parents 679f60139863
children b6793bc5034b
line wrap: on
line source


echo
echo "Configuration summary"

case $PCRE in
    YES) echo " + using system PCRE library" ;;
    NO)  echo " + PCRE library is not found" ;;
    *)   echo " + using PCRE library: $PCRE" ;;
esac

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