view auto/summary @ 218:05592fd7a436

nginx-0.0.1-2004-01-05-23:55:48 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 05 Jan 2004 20:55:48 +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