diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-02-20 16:48:59 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-02-20 16:48:59 +0000 |
| commit | 0ee5d3c106f98c06dbad8b61f85a7d0c8e65f970 (patch) | |
| tree | 54a8e4a8fa1df4371d3e4b4cda5b171cd50460e4 /auto/summary | |
| parent | bb1ba3fa6d8e12074afeea8c27e29699e29fb04e (diff) | |
| download | nginx-0ee5d3c106f98c06dbad8b61f85a7d0c8e65f970.tar.gz nginx-0ee5d3c106f98c06dbad8b61f85a7d0c8e65f970.tar.bz2 | |
nginx-0.0.2-2004-02-20-19:48:59 import
Diffstat (limited to 'auto/summary')
| -rw-r--r-- | auto/summary | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/auto/summary b/auto/summary index 75ae60903..5dacfc140 100644 --- a/auto/summary +++ b/auto/summary @@ -2,15 +2,19 @@ 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 +if [ $USE_PCRE = DISABLED ]; then + echo " + PCRE library is disabled" + +else + case $PCRE in + YES) echo " + using system PCRE library" ;; + NO) echo " + PCRE library is not found" ;; + *) echo " + using PCRE library: $PCRE" ;; + esac +fi case $MD5 in - YES) echo " + using system md5 library" ;; + YES) echo " + md5: using system $MD5_LIB library" ;; NONE) echo " + md5 library is not used" ;; NO) echo " + md5 library is not found" ;; *) echo " + using md5 library: $MD5" ;; |
