view auto/summary @ 212:679f60139863

nginx-0.0.1-2003-12-19-11:15:11 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Dec 2003 08:15:11 +0000
parents 00cafae0bdf1
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