view auto/summary @ 253:b6793bc5034b

nginx-0.0.2-2004-02-09-10:46:43 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 09 Feb 2004 07:46:43 +0000
parents 679f60139863
children e6938ca7331a
line wrap: on
line source


echo
echo "Configuration summary"

case $PCRE in
    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" ;;
esac

case $MD5 in
    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" ;;
esac

case $ZLIB in
    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" ;;
esac

echo