Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-02-20 19:48:59 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-02-20 19:48:59 +0300
commit0ee5d3c106f98c06dbad8b61f85a7d0c8e65f970 (patch)
tree54a8e4a8fa1df4371d3e4b4cda5b171cd50460e4 /auto/summary
parentbb1ba3fa6d8e12074afeea8c27e29699e29fb04e (diff)
nginx-0.0.2-2004-02-20-19:48:59 import
Diffstat (limited to 'auto/summary')
-rw-r--r--auto/summary18
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" ;;