aboutsummaryrefslogtreecommitdiff
path: root/auto/summary
blob: 28fe5f5d5611c46a56248c77af04bcf5136d3901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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